Updating doc block for Controller::flash(). Closes #5333

git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@7511 3807eeeb-6ff5-0310-8944-8be069107fe0
This commit is contained in:
mark_story 2008-08-26 18:35:44 +00:00
parent 253c5a87ec
commit 8a76b86c85

View file

@ -778,12 +778,12 @@ class Controller extends Object {
header("Pragma: no-cache");
}
/**
* Shows a message to the user $time seconds, then redirects to $url
* Shows a message to the user $pause seconds, then redirects to $url
* Uses flash.thtml as a layout for the messages
*
* @param string $message Message to display to the user
* @param string $url Relative URL to redirect to after the time expires
* @param integer $time Time to show the message
* @param integer $pause Time to show the message
* @access public
*/
function flash($message, $url, $pause = 1) {