]> git.mxchange.org Git - friendica.git/blobdiff - mod/profile.php
dbstructure now switches in the maintenance mode when updating
[friendica.git] / mod / profile.php
index 681b1dbd1cdd45974b9ee00b16ccf83dbcb9c544..a8a6ad3885d679a4bb40535c5df5191813655dd2 100644 (file)
@@ -10,7 +10,7 @@ function profile_init(&$a) {
                $a->page['aside'] = '';
 
        if($a->argc > 1)
-               $which = $a->argv[1];
+               $which = htmlspecialchars($a->argv[1]);
        else {
                $r = q("select nickname from user where blocked = 0 and account_expired = 0 and account_removed = 0 and verified = 1 order by rand() limit 1");
                if(count($r)) {
@@ -27,7 +27,7 @@ function profile_init(&$a) {
        $profile = 0;
        if((local_user()) && ($a->argc > 2) && ($a->argv[2] === 'view')) {
                $which = $a->user['nickname'];
-               $profile = $a->argv[1];
+               $profile = htmlspecialchars($a->argv[1]);
        }
        else {
                auto_redir($a, $which);