diff options
author | friendica <info@friendica.com> | 2013-09-02 01:38:17 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-09-02 01:38:17 -0700 |
commit | 8b7757e033c4483da24700722c186057bb431164 (patch) | |
tree | c331db3262084b08b47970c20f2d8657d6ebef81 /mod/webpages.php | |
parent | a35d440ff1fee806a8aa17a0297e1163db6a3ba5 (diff) | |
download | volse-hubzilla-8b7757e033c4483da24700722c186057bb431164.tar.gz volse-hubzilla-8b7757e033c4483da24700722c186057bb431164.tar.bz2 volse-hubzilla-8b7757e033c4483da24700722c186057bb431164.zip |
webpage content-type -- needs cleaning up and a security check once all the important bits are in place.
Diffstat (limited to 'mod/webpages.php')
-rw-r--r-- | mod/webpages.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/mod/webpages.php b/mod/webpages.php index f3e1cd2f7..081297eb9 100644 --- a/mod/webpages.php +++ b/mod/webpages.php @@ -52,10 +52,13 @@ require_once ('include/conversation.php'); 'bang' => (($group || $cid) ? '!' : ''), 'visitor' => 'block', 'profile_uid' => intval($owner), + 'plaintext' => 1, + 'mimeselect' => 1, ); $o .= status_editor($a,$x); + //Get a list of webpages. We can't display all them because endless scroll makes that unusable, so just list titles and an edit link. //TODO - this should be replaced with pagelist_widget |