undebug
All checks were successful
Build and push / Pulling repo on server (push) Successful in 3s
All checks were successful
Build and push / Pulling repo on server (push) Successful in 3s
This commit is contained in:
@ -126,7 +126,7 @@ class Model {
|
||||
{
|
||||
$value = $GLOBALS['redis']->hget($this->dbTable.':'.$this->id,$key);
|
||||
|
||||
var_dump("BEFORE[".$this->dbTable.':'.$this->id."] Loading from DB $key: '$value'");
|
||||
//var_dump("BEFORE[".$this->dbTable.':'.$this->id."] Loading from DB $key: '$value'");
|
||||
|
||||
if($value!==NULL) //we'll leave null values alone
|
||||
switch($this->dbFields[$key]['type'])
|
||||
@ -142,7 +142,7 @@ class Model {
|
||||
$value = json_decode($value,true);
|
||||
break;
|
||||
}
|
||||
var_dump("AFTER[".$this->dbTable.':'.$this->id."] Loading from DB $key: '$value'");
|
||||
//var_dump("AFTER[".$this->dbTable.':'.$this->id."] Loading from DB $key: '$value'");
|
||||
$this->data[$key] = $value;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user