diff options
author | friendica <info@friendica.com> | 2011-12-12 19:08:13 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2011-12-12 19:08:13 -0800 |
commit | ee4975f1cd9f205e2300f3e22e51079c5e26f155 (patch) | |
tree | 43169634d04a94f4bb0463eaf5df82f42f1c6a31 /mod/profile.php | |
parent | bda7ca2f36ba4b35a9094c08fda356d6f08e67f8 (diff) | |
download | volse-hubzilla-ee4975f1cd9f205e2300f3e22e51079c5e26f155.tar.gz volse-hubzilla-ee4975f1cd9f205e2300f3e22e51079c5e26f155.tar.bz2 volse-hubzilla-ee4975f1cd9f205e2300f3e22e51079c5e26f155.zip |
unnecessary slash in profile update path
Diffstat (limited to 'mod/profile.php')
-rw-r--r-- | mod/profile.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/profile.php b/mod/profile.php index b7f2c9662..642e198b7 100644 --- a/mod/profile.php +++ b/mod/profile.php @@ -236,7 +236,7 @@ function profile_content(&$a, $update = 0) { $o .= '<div id="live-profile"></div>' . "\r\n"; $o .= "<script> var profile_uid = " . $a->profile['profile_uid'] - . "; var netargs = '/?f='; var profile_page = " . $a->pager['page'] . "; </script>\r\n"; + . "; var netargs = '?f='; var profile_page = " . $a->pager['page'] . "; </script>\r\n"; } |