sources/QueryString.php 1 location
|
@@ 305-306 (lines=2) @@
|
| 302 |
|
|
| 303 |
|
if (!isBrowser('possibly_robot') && empty($_COOKIE) && defined('SID') && SID != '') |
| 304 |
|
return '"' . $scripturl . '/' . strtr($matches[1], '&;=', '//,') . '.html?' . SID . (isset($matches[2]) ? $matches[2] : '') . '"'; |
| 305 |
|
else |
| 306 |
|
return '"' . $scripturl . '/' . strtr($matches[1], '&;=', '//,') . '.html' . (isset($matches[2]) ? $matches[2] : '') . '"'; |
| 307 |
|
} |
| 308 |
|
|
sources/Subs.php 1 location
|
@@ 835-836 (lines=2) @@
|
| 832 |
|
|
| 833 |
|
if (defined('SID') && SID != '') |
| 834 |
|
return $scripturl . '/' . strtr($matches[1], '&;=', '//,') . '.html?' . SID . (isset($matches[2]) ? $matches[2] : ''); |
| 835 |
|
else |
| 836 |
|
return $scripturl . '/' . strtr($matches[1], '&;=', '//,') . '.html' . (isset($matches[2]) ? $matches[2] : ''); |
| 837 |
|
} |
| 838 |
|
|
| 839 |
|
/** |