mirror of
https://github.com/pandorafms/pandorafms.git
synced 2025-07-27 07:44:35 +02:00
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:
parent
232c4a2da9
commit
e7b75448ec
@ -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>
|
2010-05-25 Raúl Mateos <raulofpandora@gmail.com>
|
||||||
|
|
||||||
* godmode/agentes/module_manager.php, modificar_agente.php: Added some
|
* godmode/agentes/module_manager.php, modificar_agente.php: Added some
|
||||||
|
@ -103,7 +103,7 @@ class gettext_reader {
|
|||||||
$machine = @shell_exec('uname -m');
|
$machine = @shell_exec('uname -m');
|
||||||
|
|
||||||
$enabled64Bits = false;
|
$enabled64Bits = false;
|
||||||
if (ereg('64', $machine)) {
|
if (preg_match('/64/', $machine)) {
|
||||||
$enabled64Bits = true;
|
$enabled64Bits = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user