FundacionLQDVI_WebCongresos/www/components/com_kunena/lib/kunena.forumjump.php

39 lines
1.3 KiB
PHP

<?php
/**
* @version $Id: kunena.forumjump.php 792 2009-05-25 11:56:22Z mahagr $
* Kunena Component
* @package Kunena
*
* @Copyright (C) 2008 - 2009 Kunena Team All rights reserved
* @license http://www.gnu.org/copyleft/gpl.html GNU/GPL
* @link http://www.kunena.com
*
* Based on FireBoard Component
* @Copyright (C) 2006 - 2007 Best Of Joomla All rights reserved
* @license http://www.gnu.org/copyleft/gpl.html GNU/GPL
* @link http://www.bestofjoomla.com
*
* Based on Joomlaboard Component
* @copyright (C) 2000 - 2004 TSMF / Jan de Graaff / All Rights Reserved
* @license http://www.gnu.org/copyleft/gpl.html GNU/GPL
* @author TSMF & Jan de Graaff
**/
// MOS Intruder Alerts
defined( '_JEXEC' ) or die('Restricted access');
$catid = JRequest::getInt('catid', 0);
$options = array ();
$options[] = JHTML::_('select.option', '0', _KUNENA_FORUM_TOP);
$lists['parent'] = JJ_categoryParentList($catid, "", $options);
?>
<form id = "jumpto" name = "jumpto" method = "post" target = "_self" action = "<?php echo JRoute::_(KUNENA_LIVEURLREL); ?>">
<span style = "width: 100%; text-align: right;">
<input type = "hidden" name = "func" value = "showcat"/>
<?php echo $lists['parent']; ?>
<input type = "submit" name = "Go" class="fb_button fbs" value = "<?php echo _KUNENA_GO; ?>"/>
</span>
</form>