Changeset 348
- Timestamp:
- Jan 17, 2012, 9:39:54 PM (13 years ago)
- Location:
- trunk
- Files:
-
- 2 added
- 1 deleted
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/.htaccess
r346 r348 5 5 6 6 RewriteEngine On 7 RewriteBase /7 #RewriteBase / 8 8 9 9 # Pretty urls on localhost with alias … … 11 11 RewriteCond %{REQUEST_FILENAME} !-f 12 12 RewriteCond %{REQUEST_FILENAME} !-d 13 RewriteRule ^(.*)$ centrala/index.php?$113 RewriteRule ^(.*)$ index.php?page=$1 14 14 15 15 # Pretty urls -
trunk/Modules/Log/Log.php
r347 r348 24 24 25 25 } 26 27 ?> -
trunk/Modules/page.php
r343 r348 6 6 var $FormatHTML = false; 7 7 var $ShowRuntimeInfo = false; 8 var $SimplePage = false; 8 9 var $PathTree = array('Rozcestník', 9 10 'index.php' => '', … … 175 176 { 176 177 $Output = $this->Show(); 177 $Output = $this->ShowHeader($this->FullTitle, $this->ShortTitle).$Output; 178 $Output .= $this->ShowFooter(); 178 if(!$this->SimplePage) 179 { 180 $Output = $this->ShowHeader($this->FullTitle, $this->ShortTitle).$Output; 181 $Output .= $this->ShowFooter(); 182 } 179 183 if($this->FormatHTML == true) echo($this->FormatOutput($Output)); 180 184 else echo($Output); -
trunk/index.php
r346 r348 308 308 $Page = $_GET['page']; 309 309 if(substr($Page, -1) == '/') $Page = substr($Page, 0, -1); 310 //print_r($System->Pages); 310 311 if(array_key_exists($Page, $System->Pages)) 311 312 {
Note:
See TracChangeset
for help on using the changeset viewer.