]> git.mxchange.org Git - mailer.git/commitdiff
Minor cleanups:
authorRoland Häder <roland@mxchange.org>
Thu, 28 Jul 2011 22:05:27 +0000 (22:05 +0000)
committerRoland Häder <roland@mxchange.org>
Thu, 28 Jul 2011 22:05:27 +0000 (22:05 +0000)
- isFileReadable() does now check is_file() first
- Internal TODO closed (was not needed)
- TODOs.txt updated

DOCS/TODOs.txt
inc/wrapper-functions.php

index 9bc31bcda9bc9f3ee5e17964f03c19cdb72f7958..ee7c8bee0bdb35fb53c73617ae987c0c33476231 100644 (file)
 ./inc/modules/member/what-unconfirmed.php:162: // @TODO Try to rewrite this to $content = SQL_FETCHARRAY()
 ./inc/modules/member/what-unconfirmed.php:227:                         // @TODO This 'userid' cannot be saved because of encapsulated EL code
 ./inc/modules/order.php:74:            // @TODO Unused: 2,4
-./inc/mysql-manager.php:1267:                  // @TODO Try to rewrite this to $content = SQL_FETCHARRAY()
-./inc/mysql-manager.php:1331:          // @TODO Rewrite these lines to a filter
-./inc/mysql-manager.php:1355:  // @TODO Rewrite this to a filter
-./inc/mysql-manager.php:1614:                  // @TODO Rewrite this to a filter
-./inc/mysql-manager.php:1660:// @TODO Fix inconsistency between last_module and getWhat()
+./inc/mysql-manager.php:1270:                  // @TODO Try to rewrite this to $content = SQL_FETCHARRAY()
+./inc/mysql-manager.php:1334:          // @TODO Rewrite these lines to a filter
+./inc/mysql-manager.php:1358:  // @TODO Rewrite this to a filter
+./inc/mysql-manager.php:1617:                  // @TODO Rewrite this to a filter
+./inc/mysql-manager.php:1663:// @TODO Fix inconsistency between last_module and getWhat()
 ./inc/mysql-manager.php:387:   // @TODO Try to rewrite this to one or more functions
 ./inc/mysql-manager.php:44:// @TODO Can we cache this?
 ./inc/purge/purge-inact.php:55:        // @TODO Rewrite these if() blocks to a filter
 ./inc/template-functions.php:436:      // @TODO $DATA is deprecated and should be avoided and replaced with $content
 ./inc/template-functions.php:602:// @TODO $simple/$constants are deprecated
 ./inc/template-functions.php:628:      // @TODO Do only use $content and deprecate $DATA in templates
-./inc/wrapper-functions.php:130:// @TODO Implement $compress
-./inc/wrapper-functions.php:137:// @TODO Implement $decompress
-./inc/wrapper-functions.php:514:// @TODO Do some more sanity check here
+./inc/wrapper-functions.php:512:// @TODO Do some more sanity check here
 ./mailid.php:139:                                      // @TODO Rewrite this to a filter
 ./mailid.php:96:               // @TODO Rewrite this to a filter
 ./mailid_top.php:105:          // @TODO Rewrite this to a filter
index 557f7e2d3d0d51d742d6f666224ec88f67e575ec..fe44a0b7d115fa89fca574cef8f9d21b802b3414 100644 (file)
@@ -127,15 +127,13 @@ function clearOutputBuffer () {
 }
 
 // Encode strings
-// @TODO Implement $compress
-function encodeString ($str, $compress = true) {
+function encodeString ($str) {
        $str = urlencode(base64_encode(compileUriCode($str)));
        return $str;
 }
 
 // Decode strings encoded with encodeString()
-// @TODO Implement $decompress
-function decodeString ($str, $decompress = true) {
+function decodeString ($str) {
        $str = compileUriCode(base64_decode(urldecode(compileUriCode($str))));
        return $str;
 }
@@ -172,7 +170,7 @@ function isFileReadable ($FQFN) {
        // Do we have cache?
        if (!isset($GLOBALS['file_readable'][$FQFN])) {
                // Check all...
-               $GLOBALS['file_readable'][$FQFN] = ((file_exists($FQFN)) && (is_file($FQFN)) && (is_readable($FQFN)));
+               $GLOBALS['file_readable'][$FQFN] = ((is_file($FQFN)) && (file_exists($FQFN)) && (is_readable($FQFN)));
        } // END - if
 
        // Return result