]> git.mxchange.org Git - shipsimu.git/blobdiff - inc/classes/main/class_BaseFrameworkSystem.php
More stubs in refill page, refill page filter basicly finished
[shipsimu.git] / inc / classes / main / class_BaseFrameworkSystem.php
index 198280bd430a4044918eb05421f3f00b0e0e571a..9dd62b4f4467abcbb78a441bd2e85cdc914dd3b4 100644 (file)
@@ -232,7 +232,13 @@ class BaseFrameworkSystem extends stdClass implements FrameworkInterface {
                        // Some arguments are there
                        foreach ($args as $arg) {
                                // Add the type
-                               $argsString .= $arg." (".gettype($arg)."), ";
+                               $argsString .= $arg." (".gettype($arg);
+
+                               // Add length if type is string
+                               if (gettype($arg) == 'string') $argsString .= ", ".strlen($arg);
+
+                               // Closing bracket
+                               $argsString .= "), ";
                        } // END - foreach
 
                        // Remove last comma