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:
friendica 2012-10-28 22:10:07 -07:00
parent e138876199
commit 6496a07460

View File

@ -424,7 +424,7 @@ class Item extends BaseObject {
*/
public function get_data_value($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;
}