2010-05-26 Junichi Satoh <junichi@rworks.jp>

* include/gettext.php: Changed the function to use. ereg() is
	deprecated by php 5.3.



git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@2802 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
jsatoh 2010-05-26 01:43:39 +00:00
parent 232c4a2da9
commit e7b75448ec
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2010-05-26 Junichi Satoh <junichi@rworks.jp>
* include/gettext.php: Changed the function to use. ereg() is
deprecated by php 5.3.
2010-05-25 Raúl Mateos <raulofpandora@gmail.com>
* godmode/agentes/module_manager.php, modificar_agente.php: Added some

View File

@ -103,7 +103,7 @@ class gettext_reader {
$machine = @shell_exec('uname -m');
$enabled64Bits = false;
if (ereg('64', $machine)) {
if (preg_match('/64/', $machine)) {
$enabled64Bits = true;
}