Файл: wenr.online/system/classes/Notif.php
Строк: 7
<?php
class Notif {
function message($text,$to){
global $r;
$parse = parse_url($to, PHP_URL_QUERY);
if(!isset($parse)) $to = $to.'?r='.$r;
if(isset($parse)) $to = $to.'&r='.$r;
$_SESSION['message'] = $text;
header('Location: '.$to);
exit;
}
function error($text,$to){
global $r;
$parse = parse_url($to, PHP_URL_QUERY);
if(!isset($parse)) $to = $to.'?r='.$r;
if(isset($parse)) $to = $to.'&r='.$r;
$_SESSION['error'] = $text;
header('Location: '.$to);
exit;
}
}