1
0
mirror of https://github.com/e107inc/e107.git synced 2025-06-06 19:06:39 +02:00

bugfix #3539 : lan fixes admin/emoticon

This commit is contained in:
lia 2006-12-02 11:31:18 +00:00
parent e149b35fcc
commit 97c41c1e48
2 changed files with 12 additions and 10 deletions

View File

@ -11,9 +11,9 @@
| GNU General Public License (http://gnu.org).
|
| $Source: /cvs_backup/e107_0.8/e107_admin/emoticon.php,v $
| $Revision: 1.1.1.1 $
| $Date: 2006-12-02 04:33:21 $
| $Author: mcfly_e107 $
| $Revision: 1.2 $
| $Date: 2006-12-02 11:31:17 $
| $Author: lisa_ $
+----------------------------------------------------------------------------+
*/
@ -293,7 +293,7 @@ class emotec
}
$tmp = addslashes(serialize($confArray));
$sql->db_Insert("core", "'emote_".$value."', '$tmp' ");
echo "<div style='text-align: center;'><b>New emote pak found: '</b> ".$value."'</div>";
echo "<div style='text-align: center;'><b>".EMOLAN_22." '</b> ".$value."'</div>";
}
/* end ----------------------------------------------------------------------------------------------------------------------------------------- */
@ -331,7 +331,7 @@ class emotec
$tmp = addslashes(serialize($confArray));
$sql->db_Insert("core", "'emote_".$value."', '$tmp' ");
echo "<div style='text-align: center;'><b>New emote xml pak found: '</b> ".$value."'</div>";
echo "<div style='text-align: center;'><b>".EMOLAN_23." '</b> ".$value."'</div>";
}
if($confFile['type'] == "php")
@ -339,7 +339,7 @@ class emotec
echo "<b>.conf file found</b>: installing '".$value."'<br />";
include_once(e_IMAGE."emotes/".$value."/".$confFile['file']);
$sql->db_Insert("core", "'emote_".$value."', '$_emoteconf' ");
echo "<div style='text-align: center;'><b>New emote php found: '</b> ".$value."'</div>";
echo "<div style='text-align: center;'><b>".EMOLAN_24." '</b> ".$value."'</div>";
}
/* end ----------------------------------------------------------------------------------------------------------------------------------------- */

View File

@ -4,9 +4,9 @@
| e107 website system - Language File.
|
| $Source: /cvs_backup/e107_0.8/e107_languages/English/admin/lan_emoticon.php,v $
| $Revision: 1.1.1.1 $
| $Date: 2006-12-02 04:34:40 $
| $Author: mcfly_e107 $
| $Revision: 1.2 $
| $Date: 2006-12-02 11:31:18 $
| $Author: lisa_ $
+----------------------------------------------------------------------------+
*/
define("EMOLAN_1", "Emote activation");
@ -35,5 +35,7 @@ define("EMOLAN_19", "Name");
define("EMOLAN_20", "Location");
define("EMOLAN_21", "Error");
//define("EMOLAN_2", "Name");
define("EMOLAN_22", "New emote pak found:");
define("EMOLAN_23", "New emote xml pak found:");
define("EMOLAN_24", "New emote php found:");
?>