diff options
author | Haakon Meland Eriksen <haakon.eriksen@far.no> | 2015-11-07 07:13:33 +0100 |
---|---|---|
committer | Haakon Meland Eriksen <haakon.eriksen@far.no> | 2015-11-07 07:13:33 +0100 |
commit | ce4bb8e5ecd502ba8420dea93256ba4fbebf49ff (patch) | |
tree | 924b094d38bd32fae2af56976e12ab5f38541037 /install/update.php | |
parent | c40f6060da9c014135e70f165fa7adbfb127bcf2 (diff) | |
parent | 81544538032500c05a14fc90902e2930b1c4b03a (diff) | |
download | volse-hubzilla-ce4bb8e5ecd502ba8420dea93256ba4fbebf49ff.tar.gz volse-hubzilla-ce4bb8e5ecd502ba8420dea93256ba4fbebf49ff.tar.bz2 volse-hubzilla-ce4bb8e5ecd502ba8420dea93256ba4fbebf49ff.zip |
Merge remote-tracking branch 'upstream/master'
Diffstat (limited to 'install/update.php')
-rw-r--r-- | install/update.php | 20 |
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; +} + + |