Browse Source

Fix static analysis failures

Bob Mottram 7 years ago
parent
commit
02627accb1
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      src/freedombone-app-friendica

+ 2
- 2
src/freedombone-app-friendica View File

@@ -116,7 +116,7 @@ function friendica_channel_directory_server {
116 116
     data=$(mktemp 2>/dev/null)
117 117
     dialog --title $"Friendica channel directory server" \
118 118
            --backtitle $"Freedombone Control Panel" \
119
-           --inputbox $"When you click on 'channel directory' this is where Friendica will obtain its list from" 8 60 "$CURR_DIR_SERVER" 2>$data
119
+           --inputbox $"When you click on 'channel directory' this is where Friendica will obtain its list from" 8 60 "$CURR_DIR_SERVER" 2>"$data"
120 120
     sel=$?
121 121
     case $sel in
122 122
         0)
@@ -521,7 +521,7 @@ function install_friendica {
521 521
           echo "        # server, which is entirely possible with php-fpm/php-fcgi.";
522 522
           echo "        # Comment the 'try_files' line out if you set up php-fpm/php-fcgi on";
523 523
           echo "        # another machine. And then cross your fingers that you won't get hacked.";
524
-          echo '        try_files $uri $uri/ /index.php;';
524
+          echo "        try_files \$uri \$uri/ /index.php;";
525 525
           echo '        # NOTE: You should have "cgi.fix_pathinfo = 0;" in php.ini';
526 526
           echo '        fastcgi_split_path_info ^(.+\.php)(/.+)$;';
527 527
           echo '        # With php-cgi alone:';