diff options
author | Aaron Parecki <aaron@parecki.com> | 2014-12-26 14:57:31 -0800 |
---|---|---|
committer | Aaron Parecki <aaron@parecki.com> | 2014-12-26 14:57:31 -0800 |
commit | 8be498a324954f9d5792ca921b7364f53ff4085f (patch) | |
tree | c0bec4dc8a617ab949903e63c18594e7b34b99f9 /lib | |
parent | 430609b9005bb93ce2c6b21405cea0ede2b17a9d (diff) |
new "favorite" form with bookmarklet
* disable facebook liking for now since it was getting complicated
* new page for creating a favorite, can pass in a URL parameter too
* bookmarklet code added to the "favorite" page
Diffstat (limited to 'lib')
-rw-r--r-- | lib/helpers.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/helpers.php b/lib/helpers.php index 456fcfd..9993231 100644 --- a/lib/helpers.php +++ b/lib/helpers.php @@ -79,7 +79,7 @@ function micropub_post_for_user(&$user, $params) { // Check the response and look for a "Location" header containing the URL if($r['response'] && preg_match('/Location: (.+)/', $r['response'], $match)) { - $r['location'] = $match[1]; + $r['location'] = trim($match[1]); $user->micropub_success = 1; } else { $r['location'] = false; |