Skip to content

Commit

Permalink
Allowing Controller::flash() layout to be set with a parameter. Fixes #…
Browse files Browse the repository at this point in the history
  • Loading branch information
markstory committed Aug 28, 2009
1 parent 2444877 commit 29de5e5
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
5 changes: 3 additions & 2 deletions cake/libs/controller/controller.php
Original file line number Diff line number Diff line change
Expand Up @@ -917,17 +917,18 @@ function disableCache() {
* @param string $message Message to display to the user
* @param mixed $url Relative string or array-based URL to redirect to after the time expires
* @param integer $pause Time to show the message
* @param string $layout Layout you want to use, defaults to 'flash'
* @return void Renders flash layout
* @access public
* @link http://book.cakephp.org/view/426/flash
*/
function flash($message, $url, $pause = 1) {
function flash($message, $url, $pause = 1, $layout = 'flash') {
$this->autoRender = false;
$this->set('url', Router::url($url));
$this->set('message', $message);
$this->set('pause', $pause);
$this->set('page_title', $message);
$this->render(false, 'flash');
$this->render(false, $layout);
}

/**
Expand Down
7 changes: 7 additions & 0 deletions cake/tests/cases/libs/controller/controller.test.php
Original file line number Diff line number Diff line change
Expand Up @@ -721,6 +721,13 @@ function testFlash() {
$result = str_replace(array("\t", "\r\n", "\n"), "", $result);
$expected = str_replace(array("\t", "\r\n", "\n"), "", $expected);
$this->assertEqual($result, $expected);

App::build(array('views' => array(TEST_CAKE_CORE_INCLUDE_PATH . 'tests' . DS . 'test_app' . DS . 'views'. DS)));
$Controller =& new Controller();
$Controller->flash('this should work', '/flash', 1, 'ajax2');
$result = $Controller->output;
$this->assertPattern('/Ajax!/', $result);
App::build();
}

/**
Expand Down

0 comments on commit 29de5e5

Please sign in to comment.