diff options
author | friendica <info@friendica.com> | 2012-10-28 22:10:07 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-10-28 22:10:07 -0700 |
commit | 6496a0746062f4cb1ab6132a4ddaab8bc84dd58c (patch) | |
tree | 4e8587a121f1cbf754267a43f285a6da9e138679 /include | |
parent | e1388761998f231de0c321e6652f7db9ed567c09 (diff) | |
download | volse-hubzilla-6496a0746062f4cb1ab6132a4ddaab8bc84dd58c.tar.gz volse-hubzilla-6496a0746062f4cb1ab6132a4ddaab8bc84dd58c.tar.bz2 volse-hubzilla-6496a0746062f4cb1ab6132a4ddaab8bc84dd58c.zip |
ignore error for non-existent DB fields at the present time since it's just filling up the logs with noise.
Diffstat (limited to 'include')
-rw-r--r-- | include/ItemObject.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/ItemObject.php b/include/ItemObject.php index 3035203f8..b09cd470e 100644 --- a/include/ItemObject.php +++ b/include/ItemObject.php @@ -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; } |