diff options
author | Brett Profitt <brett.profitt@gmail.com> | 2012-05-10 19:45:00 -0700 |
---|---|---|
committer | Brett Profitt <brett.profitt@gmail.com> | 2012-05-10 19:45:00 -0700 |
commit | 25b1a1ea11182b6fc195f4cca76ec4788d79c65e (patch) | |
tree | 49415bbe641d8e83a78927b47d8756fb2c4fdc3a /engine/lib | |
parent | f5e638639fe8d443b88fc1a1b786c6b8fbee8fb3 (diff) | |
download | elgg-25b1a1ea11182b6fc195f4cca76ec4788d79c65e.tar.gz elgg-25b1a1ea11182b6fc195f4cca76ec4788d79c65e.tar.bz2 |
Refs #4487. Turning off system log (even more) during upgrades. Removed debug call to system_log() in create_annotation().
Diffstat (limited to 'engine/lib')
-rw-r--r-- | engine/lib/annotations.php | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/engine/lib/annotations.php b/engine/lib/annotations.php index f32dee0f0..7383f5e04 100644 --- a/engine/lib/annotations.php +++ b/engine/lib/annotations.php @@ -95,8 +95,6 @@ $owner_guid = 0, $access_id = ACCESS_PRIVATE) { $entity = get_entity($entity_guid); if (elgg_trigger_event('annotate', $entity->type, $entity)) { - system_log($entity, 'annotate'); - // If ok then add it $result = insert_data("INSERT into {$CONFIG->dbprefix}annotations (entity_guid, name_id, value_id, value_type, owner_guid, time_created, access_id) VALUES |