0byt3m1n1
Path:
/
data
/
0
/
0
/
6
/
46
/
6861
/
user
/
7034
/
cgi-bin
/
php
/
lib
/
[
Home
]
File: function.MTCGIRelativeURL.php
<?php function smarty_function_MTCGIRelativeURL($args, &$ctx) { // status: complete // parameters: none $url = $ctx->mt->config['CGIPath']; if (substr($url, strlen($url) - 1, 1) != '/') $url .= '/'; if (preg_match('!^https?://[^/]+(/.*)$!', $url, $matches)) { return $matches[1]; } else { return $url; } } ?>