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