1
0
mirror of https://github.com/e107inc/e107.git synced 2025-07-31 03:40:37 +02:00

missing function fix

This commit is contained in:
CaMer0n
2009-12-04 12:00:05 +00:00
parent 029662bf50
commit 19240f45c2

View File

@@ -10,8 +10,8 @@
* With code from Izydor and Lolo. * With code from Izydor and Lolo.
* *
* $Source: /cvs_backup/e107_0.8/e107_admin/lancheck.php,v $ * $Source: /cvs_backup/e107_0.8/e107_admin/lancheck.php,v $
* $Revision: 1.20 $ * $Revision: 1.21 $
* $Date: 2009-11-18 01:04:26 $ * $Date: 2009-12-04 12:00:05 $
* $Author: e107coders $ * $Author: e107coders $
* *
*/ */
@@ -543,7 +543,7 @@ class lancheck
foreach($subkeys as $sk) foreach($subkeys as $sk)
{ {
if($utf_error == "" && !is_utf8($check[$k_check][$sk])) if($utf_error == "" && !$this->is_utf8($check[$k_check][$sk]))
{ {
$utf_error = "<span class='error'><em>".LAN_CHECK_19."</em></span><br />"; $utf_error = "<span class='error'><em>".LAN_CHECK_19."</em></span><br />";
} }