BUG Adjust Session::setFormMessage to fit with underlying API.

This commit is contained in:
Mateusz Uzdowski 2013-02-12 10:57:55 +13:00
parent ba825cec28
commit d52d5f71c5

View File

@ -440,8 +440,8 @@ class Session {
* @param type the type of message * @param type the type of message
*/ */
public static function setFormMessage($formname,$message,$type){ public static function setFormMessage($formname,$message,$type){
Session::set("FormInfo.$formname.message", $message); Session::set("FormInfo.$formname.formError.message", $message);
Session::set("FormInfo.$formname.type", $type); Session::set("FormInfo.$formname.formError.type", $type);
} }
/** /**