aboutsummaryrefslogtreecommitdiff
path: root/engine/lib/entities.php
diff options
context:
space:
mode:
authorcash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>2011-02-13 19:53:03 +0000
committercash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>2011-02-13 19:53:03 +0000
commitb42125b50f3fcd518ef058211a318ce5c6b66e1b (patch)
treee1e684f5394b45d1e2b72025419cfa92f43db715 /engine/lib/entities.php
parentf9501bd6cef73e88b130c6640087008f8d58ef92 (diff)
downloadelgg-b42125b50f3fcd518ef058211a318ce5c6b66e1b.tar.gz
elgg-b42125b50f3fcd518ef058211a318ce5c6b66e1b.tar.bz2
Refs #2301 demoting type:subtype warnings to notices
git-svn-id: http://code.elgg.org/elgg/trunk@8205 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'engine/lib/entities.php')
-rw-r--r--engine/lib/entities.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/engine/lib/entities.php b/engine/lib/entities.php
index 7ab25de88..781a744ad 100644
--- a/engine/lib/entities.php
+++ b/engine/lib/entities.php
@@ -966,7 +966,7 @@ function elgg_get_entity_type_subtype_where_sql($table, $types, $subtypes, $pair
$subtype_ids[] = (ELGG_ENTITIES_NO_VALUE === $subtype) ? ELGG_ENTITIES_NO_VALUE : $subtype_id;
} else {
$valid_subtypes_count--;
- elgg_log("Type-subtype '$type:$subtype' does not exist!", 'WARNING');
+ elgg_log("Type-subtype '$type:$subtype' does not exist!", 'NOTICE');
continue;
}
}
@@ -1020,7 +1020,7 @@ function elgg_get_entity_type_subtype_where_sql($table, $types, $subtypes, $pair
ELGG_ENTITIES_NO_VALUE : $paired_subtype_id;
} else {
$valid_pairs_subtypes_count--;
- elgg_log("Type-subtype '$paired_type:$paired_subtype' does not exist!", 'WARNING');
+ elgg_log("Type-subtype '$paired_type:$paired_subtype' does not exist!", 'NOTICE');
// return false if we're all invalid subtypes in the only valid type
continue;
}