aboutsummaryrefslogtreecommitdiffstats
path: root/mod/update_profile.php
diff options
context:
space:
mode:
authorMike Macgirvin <mike@macgirvin.com>2010-09-20 19:34:44 -0700
committerMike Macgirvin <mike@macgirvin.com>2010-09-20 19:34:44 -0700
commit3ad52463f633b060bee519e8aa4d6e9453fdc2aa (patch)
tree5235655b2dd2e9a2af5f1179ebbff20dfdbd05b6 /mod/update_profile.php
parent177a6d7f79f5e237eb6d0811e8e28732a4c90d03 (diff)
downloadvolse-hubzilla-3ad52463f633b060bee519e8aa4d6e9453fdc2aa.tar.gz
volse-hubzilla-3ad52463f633b060bee519e8aa4d6e9453fdc2aa.tar.bz2
volse-hubzilla-3ad52463f633b060bee519e8aa4d6e9453fdc2aa.zip
more robust feed error handling, at the expense of performance.
Pass profile owner through HTML (yuk) to the ajax updater - as browser pre-fetch totally buggers passing it via the server session.
Diffstat (limited to 'mod/update_profile.php')
-rw-r--r--mod/update_profile.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/mod/update_profile.php b/mod/update_profile.php
index e5085f6ec..9a6729396 100644
--- a/mod/update_profile.php
+++ b/mod/update_profile.php
@@ -7,6 +7,8 @@ require_once('mod/profile.php');
function update_profile_content(&$a) {
+ $profile_uid = intval($_GET['p']);
+
header("Content-type: text/html");
echo "<!DOCTYPE html><html><body>\r\n";
echo (($_GET['msie'] == 1) ? '<div>' : '<section>');
@@ -16,7 +18,7 @@ function update_profile_content(&$a) {
// The only ones we need to fetch are those for new page additions, which we'll discover
// on the client side and then swap the image back.
- $text = profile_content($a,true);
+ $text = profile_content($a,$profile_uid);
$pattern = "/<img([^>]*) src=\"([^\"]*)\"/";
$replace = "<img\${1} dst=\"\${2}\"";
$text = preg_replace($pattern, $replace, $text);