fix of _SESSION - indefined variable

This commit is contained in:
Maryana Rozhankivska 2014-03-19 19:22:04 +02:00
parent db41c907aa
commit 6fa3f70bc2
1 changed files with 2 additions and 1 deletions

View File

@ -59,6 +59,7 @@ class Messages {
$this->msgId = md5(uniqid());
// Create the session array if it doesnt already exist
settype($_SESSION, 'array');
if( !array_key_exists('flash_messages', $_SESSION) ) $_SESSION['flash_messages'] = array();
}
@ -228,4 +229,4 @@ class Messages {
} // end class
?>
?>