* Build 139
This commit is contained in:
parent
1d300ace98
commit
db2cea630b
|
|
@ -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']`.
|
||||
- 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.
|
||||
- Added new list column type `nameFrom` (take name from X attribute) as an alternative to `select`.
|
||||
|
||||
|
|
|
|||
|
|
@ -89,7 +89,7 @@ class DebugExtension extends Twig_Extension
|
|||
* @param string $caption Caption of the dump
|
||||
* @return void
|
||||
*/
|
||||
public function dump($variables = null, $caption = 'Variable Inspector')
|
||||
public function dump($variables = null, $caption = 'Page variables')
|
||||
{
|
||||
$info = [];
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue