Merge pull request #292 from kijin/develop

Merge with XE 1.8.16
This commit is contained in:
Kijin Sung 2016-02-18 21:44:21 +09:00
commit 98f12271f1
3 changed files with 9 additions and 2 deletions

View file

@ -3,7 +3,7 @@
/**
* RX_VERSION is the version number of the Rhymix CMS.
*/
define('RX_VERSION', '1.8.15');
define('RX_VERSION', '1.8.16');
/**
* RX_MICROTIME is the startup time of the current script, in microseconds since the Unix epoch.

View file

@ -1,3 +1,3 @@
<load target="js/layout_modify.js" />
<include target="header.html" />
{$content}
{$content}

View file

@ -4,8 +4,15 @@ class ValidatorTest extends \Codeception\TestCase\Test
{
public function _before()
{
$ob_level = ob_get_level();
$oContext = Context::getInstance();
$oContext->init();
while (ob_get_level() > $ob_level)
{
ob_end_clean();
}
}
public function testRequired()