fixed jsonresult::ok() -> now returns object instead of array in result field.

This commit is contained in:
Ulf Gebhardt 2014-03-06 15:52:04 +01:00
parent 749e2e1aa9
commit b595a619a5

View File

@ -46,5 +46,5 @@ class JsonResult extends \SYSTEM\LOG\AbstractResult {
//Returns OK status
public static function ok(){
return self::toString(array());}
return self::toString(NULL);}
}