aboutsummaryrefslogtreecommitdiffstats
path: root/boot.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2013-08-25 20:11:49 -0700
committerfriendica <info@friendica.com>2013-08-25 20:11:49 -0700
commit754611738865eacba7f4acc235c03bad85dfa2c3 (patch)
tree5530216b5ac1598c0888993f617fb2292386a776 /boot.php
parentdf3cf811f044fe49173ea4b1b9d19bcdff76bc26 (diff)
downloadvolse-hubzilla-754611738865eacba7f4acc235c03bad85dfa2c3.tar.gz
volse-hubzilla-754611738865eacba7f4acc235c03bad85dfa2c3.tar.bz2
volse-hubzilla-754611738865eacba7f4acc235c03bad85dfa2c3.zip
Try to ensure full paths don't leak into xchan_addr and hubloc_addr
Diffstat (limited to 'boot.php')
-rwxr-xr-xboot.php5
1 files changed, 5 insertions, 0 deletions
diff --git a/boot.php b/boot.php
index f28021b60..a4fe8d3ad 100755
--- a/boot.php
+++ b/boot.php
@@ -1316,6 +1316,11 @@ function fix_system_urls($oldurl,$newurl) {
if(! $parsed)
continue;
$newhost = $parsed['host'];
+ // sometimes parse_url returns unexpected results.
+
+ if(strpos($newhost,'/') !== false)
+ $newhost = substr($newhost,0,strpos($newhost,'/'));
+
$rhs = $newhost . (($parsed['port']) ? ':' . $parsed['port'] : '') . (($parsed['path']) ? $parsed['path'] : '');
$x = q("update xchan set xchan_addr = '%s', xchan_url = '%s', xchan_connurl = '%s', xchan_follow = '%s', xchan_connpage = '%s', xchan_photo_l = '%s', xchan_photo_m = '%s', xchan_photo_s = '%s' where xchan_hash = '%s' limit 1",