]> git.joonet.de Git - adminer.git/commitdiff
Move comment
authorJakub Vrana <jakub@vrana.cz>
Fri, 4 Apr 2025 15:34:18 +0000 (17:34 +0200)
committerJakub Vrana <jakub@vrana.cz>
Fri, 4 Apr 2025 15:34:18 +0000 (17:34 +0200)
adminer/include/lang.inc.php

index 0c537631f69ebd359fc4a7ddf2423a2a46b44fea..20849f45ed055055875f9ee4f63736b46c83ec27 100644 (file)
@@ -6,8 +6,8 @@ namespace Adminer;
 * @param float|string $number
 */
 function lang(string $idf, $number = null): string {
-       // this is matched by compile.php
        $args = func_get_args();
+       // this is matched by compile.php
        $args[0] = Lang::$translations[$idf] ?: $idf;
        return call_user_func_array('Adminer\lang_format', $args);
 }