* Build 139

This commit is contained in:
Sam Georges 2014-08-30 08:56:58 +10:00
parent 1d300ace98
commit db2cea630b
2 changed files with 5 additions and 3 deletions

View File

@ -1,8 +1,10 @@
* **Build 14x** (2014-08-xx) * **Build 139** (2014-08-30)
- Components and variables can now be accessed in the page code section via `$this->foo` in addition to `$this['foo']`. - Components and variables can now be accessed in the page code section via `$this->foo` in addition to `$this['foo']`.
- AJAX handlers in the CMS can now invoke the page cycle without rendering the page using `$this->pageCycle()`. - AJAX handlers in the CMS can now invoke the page cycle without rendering the page using `$this->pageCycle()`.
- Fixes path references in the LESS compiler.
- Asset combiner now supports aliases and external files (see CMS > Markup docs).
* **Build 139** (2014-08-18) * **Build 138** (2014-08-18)
- List widget has been refactored to improve efficiency. - List widget has been refactored to improve efficiency.
- Added new list column type `nameFrom` (take name from X attribute) as an alternative to `select`. - Added new list column type `nameFrom` (take name from X attribute) as an alternative to `select`.

View File

@ -89,7 +89,7 @@ class DebugExtension extends Twig_Extension
* @param string $caption Caption of the dump * @param string $caption Caption of the dump
* @return void * @return void
*/ */
public function dump($variables = null, $caption = 'Variable Inspector') public function dump($variables = null, $caption = 'Page variables')
{ {
$info = []; $info = [];