./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
}
// 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;
}
// 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