fix path for attachments using os_storage uploaded through attach_store
This commit is contained in:
parent
f8b612a2c0
commit
2ebd9a2774
2
boot.php
2
boot.php
@ -50,7 +50,7 @@ define ( 'PLATFORM_NAME', 'hubzilla' );
|
|||||||
define ( 'RED_VERSION', trim(file_get_contents('version.inc')) . 'H');
|
define ( 'RED_VERSION', trim(file_get_contents('version.inc')) . 'H');
|
||||||
define ( 'ZOT_REVISION', 1 );
|
define ( 'ZOT_REVISION', 1 );
|
||||||
|
|
||||||
define ( 'DB_UPDATE_VERSION', 1158 );
|
define ( 'DB_UPDATE_VERSION', 1159 );
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Constant with a HTML line break.
|
* @brief Constant with a HTML line break.
|
||||||
|
@ -1918,10 +1918,10 @@ function update_r1157() {
|
|||||||
|
|
||||||
|
|
||||||
function update_r1158() {
|
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%' ");
|
$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) {
|
if($r) {
|
||||||
foreach($r as $rr) {
|
foreach($r as $rr) {
|
||||||
$hash_slash = ((substr($rr['data'],0,1) === '/') ? true : false);
|
$has_slash = ((substr($rr['data'],0,1) === '/') ? true : false);
|
||||||
q("update attach set data = '%s' where id = %d",
|
q("update attach set data = '%s' where id = %d",
|
||||||
dbesc('store/' . $rr['channel_address']. (($has_slash) ? '' : '/' . $rr['data'])),
|
dbesc('store/' . $rr['channel_address']. (($has_slash) ? '' : '/' . $rr['data'])),
|
||||||
dbesc($rr['id'])
|
dbesc($rr['id'])
|
||||||
|
Reference in New Issue
Block a user