diff options
author | redmatrix <git@macgirvin.com> | 2016-06-17 16:28:36 -0700 |
---|---|---|
committer | redmatrix <git@macgirvin.com> | 2016-06-17 21:26:25 -0700 |
commit | 22edd00211b9733cc05bbd15104da6c977d58c10 (patch) | |
tree | 73fe7789b2c25632c95b54c6e98d4fe4928b8064 | |
parent | d9aa16aa828e2fc1d3cc1f73e6ca5d6fcc39dcd5 (diff) | |
download | volse-hubzilla-22edd00211b9733cc05bbd15104da6c977d58c10.tar.gz volse-hubzilla-22edd00211b9733cc05bbd15104da6c977d58c10.tar.bz2 volse-hubzilla-22edd00211b9733cc05bbd15104da6c977d58c10.zip |
"thing" always showing default url, not that supplied by the thing.
-rw-r--r-- | Zotlabs/Module/Thing.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Zotlabs/Module/Thing.php b/Zotlabs/Module/Thing.php index e23cce565..65fc0588e 100644 --- a/Zotlabs/Module/Thing.php +++ b/Zotlabs/Module/Thing.php @@ -26,7 +26,7 @@ class Thing extends \Zotlabs\Web\Controller { $verb = escape_tags($_REQUEST['verb']); $activity = intval($_REQUEST['activity']); $profile_guid = escape_tags($_REQUEST['profile_assign']); - $url = $_REQUEST['link']; + $url = $_REQUEST['url']; $photo = $_REQUEST['img']; $hash = random_string(); @@ -235,7 +235,7 @@ class Thing extends \Zotlabs\Web\Controller { } - function get() { + function get() { // @FIXME one problem with things is we can't share them unless we provide the channel in the url // so we can definitively lookup the owner. |