Capitalized template variables (index_page -> INDEX_PAGE)

This commit is contained in:
franck
2013-07-18 09:32:50 +02:00
parent 10bf529f59
commit b177367893
3 changed files with 9 additions and 9 deletions

View File

@@ -40,9 +40,9 @@ class ParserContext implements \IteratorAggregate
// Setup basic variables
$this
->set('base_url' , ConfigQuery::read('base_url', '/'))
->set('index_page' , URL::getIndexPage())
->set('return_to_url' , URL::absoluteUrl($request->getSession()->getReturnToUrl()))
->set('BASE_URL' , ConfigQuery::read('base_url', '/'))
->set('INDEX_PAGE' , URL::getIndexPage())
->set('RETURN_TO_URL' , URL::absoluteUrl($request->getSession()->getReturnToUrl()))
;
}