* @link http://pioder.gim2przemysl.int.pl/dsf.html/
* @license GNU GPL v3
**/
if (!defined('IN_uF'))
{
die('Hacking attempt');
}
//functions installer
function alert($msg)
{
echo '';
}
function check_size_md5($file)
{
if ( file_exists($file) )
{
$result = @filesize($file);
return md5($result);
}
else
{
return false;
}
}
function AddLangs($default)
{
$result='';
$rep=opendir('./../lngs');
while ($file = readdir($rep))
{
if($file != '..' && $file !='.' && $file !='')
{
if (is_dir('./../lngs/'.$file)){
if (($file=='Polish') and $default){
$result .='';
} else {
$result .='';
}
}
}
}
return $result;
unset($rep, $file, $result);
}
function AddPages2($page)//for admin script, not used in limit!
{
$content = '';
for ($i=1;$i<=50;$i++)
{
if ($i==$page)
{
$content .= '';
}
else
{
$content .= '';
}
}
return $content;
unset($content);
}
?>