diff options
author | friendica <info@friendica.com> | 2013-10-29 18:46:51 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-10-29 18:46:51 -0700 |
commit | 75ba7ae1166562f48356b445b10cce2e57a42f4a (patch) | |
tree | 24b3cc9876ae5eb248c95cf9f5f87a12ac0a08d6 /mod/rpost.php | |
parent | 5c98d5eaaed2cb342c7e823f5893c0d0d4e19de5 (diff) | |
download | volse-hubzilla-75ba7ae1166562f48356b445b10cce2e57a42f4a.tar.gz volse-hubzilla-75ba7ae1166562f48356b445b10cce2e57a42f4a.tar.bz2 volse-hubzilla-75ba7ae1166562f48356b445b10cce2e57a42f4a.zip |
rpost bbcode tag
Diffstat (limited to 'mod/rpost.php')
-rw-r--r-- | mod/rpost.php | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/mod/rpost.php b/mod/rpost.php index 78adb5e34..562040f1b 100644 --- a/mod/rpost.php +++ b/mod/rpost.php @@ -28,6 +28,16 @@ function rpost_content(&$a) { $o = ''; if(! local_user()) { + if(remote_user()) { + // redirect to your own site. + // We can only do this with a GET request so you'll need to keep the text short or risk getting truncated + // by the wretched beast called 'shusoin'. All the browsers now allow long GET requests, but suhosin + // blocks them. + + + + } + // FIXME // probably need to figure out how to preserve the $_REQUEST variables in the session // in case you aren't currently logged in. Otherwise you'll have to go back to |