You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
542 B
13 lines
542 B
<?php |
|
|
|
function PollRewrite($print_out) |
|
{ |
|
$print_out = preg_replace('/index.php([?])module=poll&action=result&pid=(\d+)/', ABS_PATH . 'poll-\\2.html', $print_out); |
|
$print_out = preg_replace('/index.php([?])module=poll&action=form&pop=1&pid=(\d+)/', ABS_PATH . 'pollcomment-\\2.html', $print_out); |
|
$print_out = preg_replace('/index.php([?])module=poll&action=archive/', ABS_PATH . 'poll-archive.html', $print_out); |
|
$print_out = str_replace(".html&print=1", "-print.html", $print_out); |
|
|
|
return $print_out; |
|
} |
|
|
|
?>
|