diff options
author | Haakon Meland Eriksen <haakon.eriksen@far.no> | 2015-11-05 16:54:39 +0100 |
---|---|---|
committer | Haakon Meland Eriksen <haakon.eriksen@far.no> | 2015-11-05 16:54:39 +0100 |
commit | 91f751d10531e73078f7efb4efa1f5e215a8f871 (patch) | |
tree | bbe0b1b7fdd1c2c69a6ed2e001decc735111bc50 /install | |
parent | 07bd396837426fbe4cf3ecd189513d50a14081a1 (diff) | |
parent | 0db5a8673d57088ab394cdaf372fb81dbd78bcbb (diff) | |
download | volse-hubzilla-91f751d10531e73078f7efb4efa1f5e215a8f871.tar.gz volse-hubzilla-91f751d10531e73078f7efb4efa1f5e215a8f871.tar.bz2 volse-hubzilla-91f751d10531e73078f7efb4efa1f5e215a8f871.zip |
Merge remote-tracking branch 'upstream/master'
Diffstat (limited to 'install')
-rw-r--r-- | install/update.php | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/install/update.php b/install/update.php index d6b543466..38e76afda 100644 --- a/install/update.php +++ b/install/update.php @@ -1,6 +1,6 @@ <?php -define( 'UPDATE_VERSION' , 1158 ); +define( 'UPDATE_VERSION' , 1159 ); /** * @@ -1917,3 +1917,18 @@ 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%%' "); + if($r) { + foreach($r as $rr) { + $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']) + ); + } + } + return UPDATE_SUCCESS; +} + + |