]> git.mxchange.org Git - friendica.git/commitdiff
Fix overzealous space addition
authorHypolite Petovan <mrpetovan@gmail.com>
Thu, 4 May 2017 02:37:18 +0000 (22:37 -0400)
committerHypolite Petovan <mrpetovan@gmail.com>
Thu, 4 May 2017 02:41:59 +0000 (22:41 -0400)
boot.php

index aed9d287e6028bed5f978a9a16e269f1f7b6aab1..df62a81cfd212a263b15bedd8490452ee6dc3abe 100644 (file)
--- a/boot.php
+++ b/boot.php
@@ -1413,7 +1413,7 @@ function clear_cache($basepath = "", $path = "") {
                $path = $basepath;
        }
 
-       if (($path == "") OR ( !is_dir($path))) {
+       if (($path == "") OR (!is_dir($path))) {
                return;
        }
 
@@ -1430,10 +1430,10 @@ function clear_cache($basepath = "", $path = "") {
                if ($dh = opendir($path)) {
                        while (($file = readdir($dh)) !== false) {
                                $fullpath = $path . "/" . $file;
-                               if ((filetype($fullpath) == "dir") and ( $file != ".") and ( $file != "..")) {
+                               if ((filetype($fullpath) == "dir") and ($file != ".") and ($file != "..")) {
                                        clear_cache($basepath, $fullpath);
                                }
-                               if ((filetype($fullpath) == "file") and ( filectime($fullpath) < (time() - $cachetime))) {
+                               if ((filetype($fullpath) == "file") and (filectime($fullpath) < (time() - $cachetime))) {
                                        unlink($fullpath);
                                }
                        }
@@ -1644,7 +1644,7 @@ function argv($x) {
 function infinite_scroll_data($module) {
 
        if (get_pconfig(local_user(), 'system', 'infinite_scroll')
-               AND ( $module == "network") AND ( $_GET["mode"] != "minimal")) {
+               AND ($module == "network") AND ($_GET["mode"] != "minimal")) {
 
                // get the page number
                if (is_string($_GET["page"])) {
@@ -1657,7 +1657,7 @@ function infinite_scroll_data($module) {
 
                // try to get the uri from which we load the content
                foreach ($_GET AS $param => $value) {
-                       if (($param != "page") AND ( $param != "q")) {
+                       if (($param != "page") AND ($param != "q")) {
                                $reload_uri .= "&" . $param . "=" . urlencode($value);
                        }
                }