aboutsummaryrefslogtreecommitdiffstats
path: root/install/update.php
diff options
context:
space:
mode:
authorredmatrix <redmatrix@redmatrix.me>2015-11-06 12:43:51 -0800
committerredmatrix <redmatrix@redmatrix.me>2015-11-06 12:43:51 -0800
commit9a42d63516553e8fcea3190c012ca1237e7cbf0a (patch)
treea236a1fe58046cc95ee2d803d3e559e3c0365091 /install/update.php
parent4620eb32d29e1dc4058db66a6caf9f51cf01397b (diff)
parent1c8f63f1e50726c00220cfd98f259d2d35d37106 (diff)
downloadvolse-hubzilla-9a42d63516553e8fcea3190c012ca1237e7cbf0a.tar.gz
volse-hubzilla-9a42d63516553e8fcea3190c012ca1237e7cbf0a.tar.bz2
volse-hubzilla-9a42d63516553e8fcea3190c012ca1237e7cbf0a.zip
Merge https://github.com/redmatrix/redmatrix into pending_merge
Conflicts: boot.php install/update.php
Diffstat (limited to 'install/update.php')
-rw-r--r--install/update.php20
1 files changed, 19 insertions, 1 deletions
diff --git a/install/update.php b/install/update.php
index 38e76afda..10ae6725e 100644
--- a/install/update.php
+++ b/install/update.php
@@ -1,6 +1,6 @@
<?php
-define( 'UPDATE_VERSION' , 1159 );
+define( 'UPDATE_VERSION' , 1160 );
/**
*
@@ -1932,3 +1932,21 @@ function update_r1158() {
}
+function update_r1159() {
+ $r = q("select attach.id, attach.data, attach.hash, channel_address from attach left join channel on attach.uid = channel_id where os_storage = 1 ");
+ if($r) {
+ foreach($r as $rr) {
+ $x = dbunescbin($rr['data']);
+ $has_slash = (($x === 'store/' . $rr['channel_address'] . '/') ? true : false);
+ if(($x === 'store/' . $rr['channel_address']) || ($has_slash)) {
+ q("update attach set data = '%s' where id = %d",
+ dbesc('store/' . $rr['channel_address']. (($has_slash) ? '' : '/' . $rr['hash'])),
+ dbesc($rr['id'])
+ );
+ }
+ }
+ }
+ return UPDATE_SUCCESS;
+}
+
+