Fix: os infos

This commit is contained in:
Regis Houssin 2010-02-12 10:16:18 +00:00
parent bfe68feef6
commit 1322f85643
2 changed files with 7 additions and 9 deletions

View File

@ -1,6 +1,7 @@
<?php <?php
/* Copyright (C) 2001-2007 Rodolphe Quiedeville <rodolphe@quiedeville.org> /* Copyright (C) 2001-2007 Rodolphe Quiedeville <rodolphe@quiedeville.org>
* Copyright (C) 2004-2009 Laurent Destailleur <eldy@users.sourceforge.net> * Copyright (C) 2004-2009 Laurent Destailleur <eldy@users.sourceforge.net>
* Copyright (C) 2005-2010 Regis Houssin <regis@dolibarr.fr>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by
@ -19,7 +20,7 @@
/** /**
* \file htdocs/admin/system/index.php * \file htdocs/admin/system/index.php
* \brief Page accueil infos syst<EFBFBD>me * \brief Page accueil infos systeme
* \version $Id$ * \version $Id$
*/ */

View File

@ -1,5 +1,6 @@
<?php <?php
/* Copyright (C) 2004-2007 Laurent Destailleur <eldy@users.sourceforge.net> /* Copyright (C) 2004-2007 Laurent Destailleur <eldy@users.sourceforge.net>
* Copyright (C) 2005-2010 Regis Houssin <regis@dolibarr.fr>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by
@ -18,12 +19,12 @@
/** /**
* \file htdocs/admin/system/os.php * \file htdocs/admin/system/os.php
* \brief Page des infos syst<EFBFBD>me de l'OS * \brief Page des infos systeme de l'OS
* \version $Id$ * \version $Id$
*/ */
require("./pre.inc.php"); require("./pre.inc.php");
require_once(DOL_DOCUMENT_ROOT."/lib/functions2.lib.php");
$langs->load("admin"); $langs->load("admin");
@ -46,12 +47,8 @@ print "\n";
print "<tr $bc[0]><td width=\"240\">".$langs->trans("PHP_OS")."</td><td>".PHP_OS."</td></tr>\n"; print "<tr $bc[0]><td width=\"240\">".$langs->trans("PHP_OS")."</td><td>".PHP_OS."</td></tr>\n";
// Recupere la version de l'OS // Recupere la version de l'OS
ob_start(); $osversion=version_os();
phpinfo(); print "<tr $bc[1]><td width=\"240\">".$langs->trans("Version")."</td><td>".$osversion."</td></tr>\n";
$chaine = ob_get_contents();
ob_end_clean();
preg_match('/System <\/td><td class="v">([^\\/]*)<\/td>/i',$chaine,$reg);
print "<tr $bc[1]><td width=\"240\">".$langs->trans("Version")."</td><td>".$reg[1]."</td></tr>\n";
print '</table>'; print '</table>';