From 76043d97bd5d38e12ae84b18d48bc2dc4537ece0 Mon Sep 17 00:00:00 2001 From: redmatrix Date: Wed, 4 Nov 2015 23:06:37 -0800 Subject: dummy update --- install/update.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'install/update.php') diff --git a/install/update.php b/install/update.php index cc8dc6ae5..b05e433dc 100644 --- a/install/update.php +++ b/install/update.php @@ -1,6 +1,6 @@ Date: Wed, 4 Nov 2015 23:48:55 -0800 Subject: fix path for attachments using os_storage uploaded through attach_store --- install/update.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'install/update.php') diff --git a/install/update.php b/install/update.php index 666d2e799..38e76afda 100644 --- a/install/update.php +++ b/install/update.php @@ -1918,10 +1918,10 @@ function update_r1157() { function update_r1158() { - $r = q("select attach.id, attach.data, channel_address from attach left join channel on attach.uid = channel_id where os_storage = 1 and not attach.data like '%store%' "); + $r = q("select attach.id, attach.data, channel_address from attach left join channel on attach.uid = channel_id where os_storage = 1 and not attach.data like '%%store%%' "); if($r) { foreach($r as $rr) { - $hash_slash = ((substr($rr['data'],0,1) === '/') ? true : false); + $has_slash = ((substr($rr['data'],0,1) === '/') ? true : false); q("update attach set data = '%s' where id = %d", dbesc('store/' . $rr['channel_address']. (($has_slash) ? '' : '/' . $rr['data'])), dbesc($rr['id']) -- cgit v1.2.3