diff options
author | friendica <info@friendica.com> | 2013-09-06 05:25:10 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-09-06 05:25:10 -0700 |
commit | d194ee091af0ee15c7f63def7e8c07ee29e38f39 (patch) | |
tree | 0de3769e20468202520959d4a0a7e2e33cdb40c6 /mod/display.php | |
parent | f2f3372aa9fd6ce5e121f52359bc4a05a79592d1 (diff) | |
download | volse-hubzilla-d194ee091af0ee15c7f63def7e8c07ee29e38f39.tar.gz volse-hubzilla-d194ee091af0ee15c7f63def7e8c07ee29e38f39.tar.bz2 volse-hubzilla-d194ee091af0ee15c7f63def7e8c07ee29e38f39.zip |
encode and decode channel names containing HTML special characters and quotes so they will survive a reshare without mangling
Diffstat (limited to 'mod/display.php')
-rw-r--r-- | mod/display.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mod/display.php b/mod/display.php index 110dd1807..63b5fa29b 100644 --- a/mod/display.php +++ b/mod/display.php @@ -19,7 +19,6 @@ function display_content(&$a, $update = 0, $load = false) { $a->page['htmlhead'] .= replace_macros(get_markup_template('display-head.tpl'), array()); - if(argc() > 1 && argv(1) !== 'load') $item_hash = argv(1); @@ -91,7 +90,6 @@ function display_content(&$a, $update = 0, $load = false) { $sql_extra = public_permissions_sql(get_observer_hash()); - if($update && $load) { $updateable = false; @@ -109,8 +107,10 @@ function display_content(&$a, $update = 0, $load = false) { intval(local_user()), dbesc($target_item['parent_mid']) ); - if($r) + if($r) { $updateable = true; + + } } if($r === null) { $r = q("SELECT * from item |