1234567891011121314151617 |
- <?php if (!defined('PmWiki')) exit();
- $DoubleBrackets['/\[\*(http:.*?)\*\]/e'] = 'fp("$1");';
- $InlineReplacements["/\265(\\d+)\265/e"] =
- 'join("",file(str_replace("&","&",$GLOBALS["fpv"][$1])));';
- function fp($str) {
- global $fpv,$fpcount;
- $fpcount++; $fpv[$fpcount] = $str;
- return "\265$fpcount\265";
- }
- ?>
|