Changeset 939
- Timestamp:
- 09/25/07 17:29:52 (1 year ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/src/main/php/net/stubbles/websites/memphis/stubMemphisProcessor.php
r931 r939 174 174 { 175 175 $this->template->addGlobalVar('UCUO_FRAME', $this->getFrameId($page)); 176 $this->template->addGlobalVar('PAGE_TITLE', $page->getProperty('title'));176 $this->template->addGlobalVar('PAGE_TITLE', htmlentities($page->getProperty('title'))); 177 177 $this->template->addGlobalVar('PAGE_NAME', $this->getPageName()); 178 178 $this->template->addGlobalVar('VARIANT', $this->session->getValue('net.stubbles.websites.variantmanager.variant', '')); … … 184 184 } 185 185 186 // add meta information to the page186 // add meta information to the page 187 187 foreach ($this->config->getMetaTags() as $key => $value) { 188 188 $this->template->addVar('frame', 'META_' . $key, htmlentities($value));
