diff options
author | redmatrix <redmatrix@redmatrix.me> | 2015-05-20 20:49:06 -0700 |
---|---|---|
committer | redmatrix <redmatrix@redmatrix.me> | 2015-05-20 20:49:06 -0700 |
commit | 3763f74a104d5a9b91b3ddba5dd091640672e9bf (patch) | |
tree | 90883fc46613327fd17ebb19912d270e51664a2b /mod/impel.php | |
parent | c10a4ca9c7422e2d68b3222e5c1a605ff6f456d6 (diff) | |
parent | 62df06b3d6b2e56d271b69bebf8427caa715dd16 (diff) | |
download | volse-hubzilla-3763f74a104d5a9b91b3ddba5dd091640672e9bf.tar.gz volse-hubzilla-3763f74a104d5a9b91b3ddba5dd091640672e9bf.tar.bz2 volse-hubzilla-3763f74a104d5a9b91b3ddba5dd091640672e9bf.zip |
Merge branch 'master' of https://github.com/redmatrix/redmatrix
Conflicts:
include/items.php
include/text.php
mod/item.php
view/nl/messages.po
Diffstat (limited to 'mod/impel.php')
-rw-r--r-- | mod/impel.php | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/mod/impel.php b/mod/impel.php index 4700aaec5..494a3a5c2 100644 --- a/mod/impel.php +++ b/mod/impel.php @@ -113,17 +113,18 @@ function impel_init(&$a) { } $x = item_store($arr,$execflag); } - if($x['success']) + if($x['success']) { $item_id = $x['item_id']; + update_remote_id($channel,$item_id,$arr['item_restrict'],$pagetitle,$namespace,$remote_id,$arr['mid']); + $ret['success'] = true; + info( sprintf( t('%s element installed'), $installed_type)); + } + else { + notice( sprintf( t('%s element installation failed'), $installed_type)); + } - update_remote_id($channel,$item_id,$arr['item_restrict'],$pagetitle,$namespace,$remote_id,$arr['mid']); - - - $ret['success'] = true; - - info( sprintf( t('%s element installed'), $installed_type)); - +//??? should perhaps return ret? json_return_and_die(true); } |