From 076f3449516bd009ae2244fb533ea1a35738bb21 Mon Sep 17 00:00:00 2001 From: Michael Francis Date: Wed, 22 Jun 2011 15:54:58 -0400 Subject: defined mangalist and animelist in the $_Schema (should fix the whitescreen bug when adding an entry to an empty animelist) --- models/User.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'models') diff --git a/models/User.php b/models/User.php index 6ea5323..920c6a7 100644 --- a/models/User.php +++ b/models/User.php @@ -11,7 +11,11 @@ use \lithium\security\Password; class User extends \lithium\data\Model { //To bypass mongo bug protected $_meta = array('key' => '_id'); - protected $_schema = array('_id' => array('type' => 'id'), 'feed' => array('type'=>'string', 'array'=>true)); + protected $_schema = array('_id' => array('type' => 'id'), + 'feed' => array('type'=>'string', 'array' => true), + 'animelist' => array('type' => 'object', 'array' => true), + 'mangalist' => array('type' => 'object', 'array' => true) + ); public static function __init() { -- cgit v1.2.3