aboutsummaryrefslogtreecommitdiffstats
path: root/include/items.php
diff options
context:
space:
mode:
authorredmatrix <git@macgirvin.com>2016-02-16 22:53:27 -0800
committerredmatrix <git@macgirvin.com>2016-02-16 22:53:27 -0800
commit41ec5403e184fa8526c4d3fd0176e70a5b2b67f1 (patch)
tree57f642b39f8f60498b5e70e9b17eb75e9629efcb /include/items.php
parent77eb6c57618a7ccfa64f200e7d1f18dcc1dd16f2 (diff)
downloadvolse-hubzilla-41ec5403e184fa8526c4d3fd0176e70a5b2b67f1.tar.gz
volse-hubzilla-41ec5403e184fa8526c4d3fd0176e70a5b2b67f1.tar.bz2
volse-hubzilla-41ec5403e184fa8526c4d3fd0176e70a5b2b67f1.zip
slight changes to set_iconfig - if passed an item structure only update the structure. Update the DB only if passed an item_id. This makes a clean separation of behaviour that's easy to document. One could get into some weird situations the original way which tried to update and sync both.
Diffstat (limited to 'include/items.php')
-rwxr-xr-xinclude/items.php46
1 files changed, 13 insertions, 33 deletions
diff --git a/include/items.php b/include/items.php
index 0d51af7bc..2239510dc 100755
--- a/include/items.php
+++ b/include/items.php
@@ -5480,10 +5480,10 @@ function get_iconfig(&$item, $family, $key) {
dbesc($key)
);
if($r) {
- $v = ((preg_match('|^a:[0-9]+:{.*}$|s',$r[0]['v'])) ? unserialize($r[0]['v']) : $r[0]['v']);
+ $r[0]['v'] = ((preg_match('|^a:[0-9]+:{.*}$|s',$r[0]['v'])) ? unserialize($r[0]['v']) : $r[0]['v']);
if($is_item)
$item['iconfig'][] = $r[0];
- return $v;
+ return $r[0]['v'];
}
return false;
@@ -5504,31 +5504,25 @@ function set_iconfig(&$item, $family, $key, $value) {
$item['iconfig'] = array();
elseif($item['iconfig']) {
for($x = 0; $x < count($item['iconfig']); $x ++) {
- if($item['iconfig'][$x]['cat'] == $family && $item['iconfig']['k'] == $key) {
+ if($item['iconfig'][$x]['cat'] == $family && $item['iconfig'][$x]['k'] == $key) {
$idx = $x;
}
}
}
- if(array_key_exists('item_id',$item))
- $iid = intval($item['item_id']);
- else
- $iid = intval($item['id']);
+ $entry = array('cat' => $family, 'k' => $key, 'v' => $value);
+ if(is_null($idx))
+ $item['iconfig'][] = $entry;
+ else
+ $item['iconfig'][$idx] = $entry;
+ return $value;
}
- elseif(intval($item))
+
+ if(intval($item))
$iid = intval($item);
- if(! $iid) {
- $entry = array('cat' => $family, 'k' => $key, 'v' => $value);
- if($is_item) {
- if(is_null($idx))
- $item['iconfig'][] = $entry;
- else
- $item['iconfig'][$idx] = $entry;
- return $value;
- }
+ if(! $iid)
return false;
- }
if(get_iconfig($item, $family, $key) === false) {
$r = q("insert into iconfig( iid, cat, k, v ) values ( %d, '%s', '%s', '%s' ) ",
@@ -5547,23 +5541,9 @@ function set_iconfig(&$item, $family, $key, $value) {
);
}
- $y = q("select * from iconfig where iid = %d and cat = '%s' and k = '%s' limit 1",
- intval($iid),
- dbesc($family),
- dbesc($key)
- );
- if(! $y)
+ if(! $r)
return false;
- $y[0]['v'] = $value;
-
- if($is_item) {
- if(is_null($idx))
- $item['iconfig'][] = $y[0];
- else
- $item['iconfig'][$idx] = $y[0];
- }
-
return $value;
}