aboutsummaryrefslogtreecommitdiffstats
path: root/install
diff options
context:
space:
mode:
authorredmatrix <redmatrix@redmatrix.me>2015-11-04 23:48:55 -0800
committerredmatrix <redmatrix@redmatrix.me>2015-11-04 23:48:55 -0800
commit2ebd9a2774a361bcdafb20d6eec6974b631609ea (patch)
tree25ce84b11e588960806873621606cecaca8b9e6c /install
parentf8b612a2c04e947f18614f3e8a412a0bd6365b2e (diff)
downloadvolse-hubzilla-2ebd9a2774a361bcdafb20d6eec6974b631609ea.tar.gz
volse-hubzilla-2ebd9a2774a361bcdafb20d6eec6974b631609ea.tar.bz2
volse-hubzilla-2ebd9a2774a361bcdafb20d6eec6974b631609ea.zip
fix path for attachments using os_storage uploaded through attach_store
Diffstat (limited to 'install')
-rw-r--r--install/update.php4
1 files changed, 2 insertions, 2 deletions
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'])