Changeset 28 for branches/3/functions.php
- Timestamp:
- Oct 13, 2008, 8:01:02 PM (16 years ago)
- Location:
- branches/3
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3
-
Property svn:ignore
set to
config.php
-
Property svn:ignore
set to
-
branches/3/functions.php
r27 r28 3 3 function ShowHeader() 4 4 { // BEGIN function ShowHeader 5 global $Config,$menu,$ User;6 echo '<?xml version="1.0" encoding="'.$Config['Charset'].'"? >5 global $Config,$menu,$user; 6 echo '<?xml version="1.0" encoding="'.$Config['Charset'].'"?'.'> 7 7 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 8 8 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> … … 30 30 31 31 echo '</ul>'; 32 if ($user->Permission() > 0) { 33 echo $user->Role(); 34 } else { 35 $user->WriteLogin(); 36 } 32 37 echo ' 33 38 </div> 34 39 </div> 35 40 '; 36 37 41 } // END function ShowHeader 38 42
Note:
See TracChangeset
for help on using the changeset viewer.