diff options
author | redmatrix <redmatrix@redmatrix.me> | 2015-11-04 23:17:09 -0800 |
---|---|---|
committer | redmatrix <redmatrix@redmatrix.me> | 2015-11-04 23:17:09 -0800 |
commit | f8b612a2c04e947f18614f3e8a412a0bd6365b2e (patch) | |
tree | f882e50dfe0ba74cf9fd6a7f36e25a6dde051189 /install/update.php | |
parent | f7468ab473f49b9594095d29a50f8e921d0b15af (diff) | |
parent | 76043d97bd5d38e12ae84b18d48bc2dc4537ece0 (diff) | |
download | volse-hubzilla-f8b612a2c04e947f18614f3e8a412a0bd6365b2e.tar.gz volse-hubzilla-f8b612a2c04e947f18614f3e8a412a0bd6365b2e.tar.bz2 volse-hubzilla-f8b612a2c04e947f18614f3e8a412a0bd6365b2e.zip |
Merge https://github.com/redmatrix/redmatrix into pending_merge
Conflicts:
install/update.php
Diffstat (limited to 'install/update.php')
-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..666d2e799 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) { + $hash_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; +} + + |