diff options
author | Friendika <info@friendika.com> | 2011-08-30 18:46:34 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-08-30 18:46:34 -0700 |
commit | f8da48a880f8b01e2284610e74fe3b2b6ec2dc39 (patch) | |
tree | 12168072ceb9bfd533b60564310bbfb73fdf2d0d /mod/admin.php | |
parent | 0f1bc6e9571e367b37246e43ce08921bf317fa7c (diff) | |
download | volse-hubzilla-f8da48a880f8b01e2284610e74fe3b2b6ec2dc39.tar.gz volse-hubzilla-f8da48a880f8b01e2284610e74fe3b2b6ec2dc39.tar.bz2 volse-hubzilla-f8da48a880f8b01e2284610e74fe3b2b6ec2dc39.zip |
unsafe chars in admin, add img to diaspora markdown processor
Diffstat (limited to 'mod/admin.php')
-rw-r--r-- | mod/admin.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/admin.php b/mod/admin.php index 7799e64ab..72544ee70 100644 --- a/mod/admin.php +++ b/mod/admin.php @@ -344,7 +344,7 @@ function admin_page_site(&$a) { * Users admin page */ function admin_page_users_post(&$a){ - $pending = ( x(£_POST, 'pending') ? $_POST['pending'] : Array() ); + $pending = ( x($_POST, 'pending') ? $_POST['pending'] : Array() ); $users = ( x($_POST, 'user') ? $_POST['user'] : Array() ); if (x($_POST,'page_users_block')){ |