Esempio n. 1
0
function CheckBlocklist($pagename, &$page, &$new)
{
    $ptext = implode('', @$_POST);
    if (@$ptext) {
        Blocklist($pagename, $ptext);
    }
}
Esempio n. 2
0
function CheckBlocklist($pagename, &$page, &$new)
{
    StopWatch("CheckBlocklist: begin {$pagename}");
    $ptext = implode('', @$_POST);
    if (@$ptext) {
        Blocklist($pagename, $ptext);
    }
    StopWatch("CheckBlocklist: end {$pagename}");
}
Esempio n. 3
0
function CheckBlocklist($pagename, &$page, &$new)
{
    if (isset($_POST['text'])) {
        Blocklist($pagename, $_POST['text']);
    }
}
Esempio n. 4
0
function CheckBlocklist($pagename, &$page, &$new) 
  { Blocklist($pagename, $new['text']); }