Merge https://github.com/redmatrix/redmatrix into pending_merge
Conflicts: install/update.php
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user