ignore error for non-existent DB fields at the present time since it's just filling up the logs with noise.
This commit is contained in:
parent
e138876199
commit
6496a07460
@ -424,7 +424,7 @@ class Item extends BaseObject {
|
|||||||
*/
|
*/
|
||||||
public function get_data_value($name) {
|
public function get_data_value($name) {
|
||||||
if(!isset($this->data[$name])) {
|
if(!isset($this->data[$name])) {
|
||||||
logger('[ERROR] Item::get_data_value : Item has no value name "'. $name .'".', LOGGER_DEBUG);
|
// logger('[ERROR] Item::get_data_value : Item has no value name "'. $name .'".', LOGGER_DEBUG);
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user