Bravo List

Bravo List (http://www.bvlist.com/index.php)
-   Template Shares (http://www.bvlist.com/forumdisplay.php?f=26)
-   -   usersearch not valid (http://www.bvlist.com/showthread.php?t=328)

empereur 23rd May 2008 23:05

usersearch not valid
 
le fichier dans admin/usersearch.php ne fonctionne pas il met une page blanche dans la version v4.3 templates si quelqu'un peut me trouv

seb35 24th May 2008 00:33

Re: usersearch not valid
 
simple erreur dans le php syntaxe ouverte mais pas ferm

empereur 24th May 2008 08:58

Re: usersearch not valid
 
[quote=nicky]simple erreur dans le php syntaxe ouverte mais pas ferm

seb35 24th May 2008 09:50

Re: usersearch not valid
 
[code]
function mkdate ($date)
{
if (strpos ($date, '-'))
{
$a = explode ('-', $date);
}
else
{
if (strpos ($date, '/'))
{
$a = explode ('/', $date);
}
else
{
return 0;
}
}

$i = 0;
while ($i < 3)
{
if (!is_numeric ($a[$i]))
{
return 0;
}

++$i;
}

if (checkdate ($a[1], $a[2], $a[0]))
{
return date ('Y-m-d', mktime (0, 0, 0, $a[1], $a[2], $a[0]));
}

return 0;
}

function ratios ($up, $down, $color = True)
{
if (0 < $down)
{
$r = number_format ($up / $down, 2);
if ($color)
{
$r = '' . $r . '');
}
}
else
{
if (0 < $up)
{
$r = 'Inf.';
}
else
{
$r = '---';
}
}

return $r;
}

function haswildcard ($text)
{
if ((((strpos ($text, '*') === False AND strpos ($text, '?') === False) AND strpos ($text, '%') === False) AND strpos ($text, '_') === False))
{
return False;
}

return True;
}

if (!defined ('_IN_TS_SE_ORIGINAL_STAFF_PANEL_4_3_'))
{
exit ('Error! Direct initialization of this file is not allowed.');
}

define ('US_VERSION', '0.3 by xam');
include_once INC_PATH . '/functions_ratio.php';
$DEBUG_MODE = 0;
stdhead ('Administrative User Search');
_form_header_open_ ('Administrative User Search - (Instructions)

empereur 24th May 2008 10:17

Re: usersearch not valid
 
trop cool t'es un chef comme dab merci beaucoup :drink:

Too cool are you a leader as dab thank you very much :drink:


All times are GMT +2. The time now is 11:12.

Powered by vBulletin® Version 3.8.11 Beta 3
Copyright ©2000 - 2024, vBulletin Solutions Inc.