aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2012-04-17 17:09:04 -0700
committerfriendica <info@friendica.com>2012-04-17 17:09:04 -0700
commit34144a3b4a4559beeb1b8606649bd92f6bd270ec (patch)
treefa5110f32aab09ed13184b06c902a88df742ba58
parent5b407b5ee7268cce3a3dbb659a5b33dc62ab93d7 (diff)
parente3af8182630c1e4a48c142a953be313b158f1c8e (diff)
downloadvolse-hubzilla-34144a3b4a4559beeb1b8606649bd92f6bd270ec.tar.gz
volse-hubzilla-34144a3b4a4559beeb1b8606649bd92f6bd270ec.tar.bz2
volse-hubzilla-34144a3b4a4559beeb1b8606649bd92f6bd270ec.zip
Merge pull request #243 from CatoTH/master
Typo in Constant
-rw-r--r--include/items.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/items.php b/include/items.php
index 63450cff5..0a8bc12c0 100644
--- a/include/items.php
+++ b/include/items.php
@@ -1476,7 +1476,7 @@ function consume_feed($xml,$importer,&$contact, &$hub, $datedir = 0, $pass = 0)
if(! $item['deleted'])
logger('consume_feed: deleting item ' . $item['id'] . ' uri=' . $item['uri'], LOGGER_DEBUG);
- if(($item['verb'] === ACTIVITY_TAG) && ($item['object-type'] === ACTVITY_OBJ_TAGTERM)) {
+ if(($item['verb'] === ACTIVITY_TAG) && ($item['object-type'] === ACTIVITY_OBJ_TAGTERM)) {
$xo = parse_xml_string($item['object'],false);
$xt = parse_xml_string($item['target'],false);
if($xt->type === ACTIVITY_OBJ_NOTE) {
@@ -2092,7 +2092,7 @@ function local_delivery($importer,$data) {
logger('local_delivery: deleting item ' . $item['id'] . ' uri=' . $item['uri'], LOGGER_DEBUG);
- if(($item['verb'] === ACTIVITY_TAG) && ($item['object-type'] === ACTVITY_OBJ_TAGTERM)) {
+ if(($item['verb'] === ACTIVITY_TAG) && ($item['object-type'] === ACTIVITY_OBJ_TAGTERM)) {
$xo = parse_xml_string($item['object'],false);
$xt = parse_xml_string($item['target'],false);