]> git.mxchange.org Git - friendica.git/commitdiff
Standards ...
authorMichael <heluecht@pirati.ca>
Thu, 1 Dec 2016 22:50:07 +0000 (22:50 +0000)
committerMichael <heluecht@pirati.ca>
Thu, 1 Dec 2016 22:50:07 +0000 (22:50 +0000)
boot.php

index 9a766d41dc1ded72e3ff382e4225103b04751eb2..49745122481b4c51e0dfb7e124bf7a479d4719ce 100644 (file)
--- a/boot.php
+++ b/boot.php
@@ -2365,20 +2365,27 @@ function get_lockpath() {
        return "";
 }
 
+/**
+ * @brief Returns the path where spool files are stored
+ *
+ * @return string Spool path
+ */
 function get_spoolpath() {
        $spoolpath = get_config('system','spoolpath');
-       if (($spoolpath != "") AND is_dir($spoolpath) AND is_writable($spoolpath))
+       if (($spoolpath != "") AND is_dir($spoolpath) AND is_writable($spoolpath)) {
                return($spoolpath);
+       }
 
        $temppath = get_temppath();
 
        if ($temppath != "") {
                $spoolpath = $temppath."/spool";
 
-               if (!is_dir($spoolpath))
+               if (!is_dir($spoolpath)) {
                        mkdir($spoolpath);
-               elseif (!is_writable($spoolpath))
+               } elseif (!is_writable($spoolpath)) {
                        $spoolpath = $temppath;
+               }
 
                if (is_dir($spoolpath) AND is_writable($spoolpath)) {
                        set_config("system", "spoolpath", $spoolpath);