Fixed printftext having no return

There is a difference. 
Before, on index:
<a href='XX' target='_blank'></a>

After:
<a href='XX' target='_blank'>56</a>
This commit is contained in:
Delirious
2024-02-22 16:11:38 -07:00
committed by GitHub
parent 21fdc5d0ef
commit 82b5ae8dcd
+1 -1
View File
@@ -7,7 +7,7 @@ function printtext($key) {
function printftext() {
$argv = func_get_args();
$key = array_shift($argv);
vprintf(TEXTS[$key], $argv);
return vprintf(TEXTS[$key], $argv);
}
// default to language "en"