finish up the source route storage so we can prevent messages from flowing upstream in complicated delivery chains

This commit is contained in:
friendica
2014-03-31 16:25:05 -07:00
parent 1108eaaed0
commit ced6d82633
4 changed files with 31 additions and 30 deletions

View File

@@ -1,6 +1,6 @@
<?php
define( 'UPDATE_VERSION' , 1104 );
define( 'UPDATE_VERSION' , 1105 );
/**
*
@@ -1166,3 +1166,10 @@ function update_r1103() {
set_config('system','curl_ssl_ciphers','ALL:!eNULL');
return UPDATE_SUCCESS;
}
function update_r1104() {
$r = q("ALTER TABLE `item` ADD `route` TEXT NOT NULL DEFAULT '' AFTER `postopts` ");
if($r)
return UPDATE_SUCCESS;
return UPDATE_FAILED;
}