Changeset 729 for trunk/Common/Page.php
- Timestamp:
- Jan 12, 2015, 12:20:30 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Common/Page.php
r635 r729 50 50 function ShowHeader($Title, $Path) 51 51 { 52 $ScriptName = $_SERVER['REQUEST_URI']; 52 if(array_key_exists('REQUEST_URI', $_SERVER)) 53 $ScriptName = $_SERVER['REQUEST_URI']; 54 else $ScriptName = ''; 53 55 while(strpos($ScriptName, '//') !== false) 54 56 $ScriptName = str_replace('//', '/', $ScriptName);
Note:
See TracChangeset
for help on using the changeset viewer.