Some minor updates for test files

This commit is contained in:
Clemens Schwaighofer
2018-12-14 13:07:10 +09:00
parent 005584e2ed
commit 98e16e6143
7 changed files with 45 additions and 18 deletions

17
www/admin/l10n_test.php Executable file
View File

@@ -0,0 +1,17 @@
<?php
// debug for L10n issues in php 7.3
// namespace test
ob_start();
$lang = 'en_utf8';
// admin class tests
require 'config.php';
$l = new CoreLibs\Language\L10n($lang);
echo "OK<br>";
ob_end_flush();
// __END__