mirror of
https://github.com/Pathduck/gallery3.git
synced 2026-05-20 19:39:16 -04:00
1) drop unnecessary semicolon 2) start with <?php for extra security in the case that the server itself doesn't have short_tags enabled (the app won't work, but we need to make sure that we're still secure)
16 lines
345 B
PHP
16 lines
345 B
PHP
<?php defined("SYSPATH") or die("No direct script access.") ?>
|
|
<ul>
|
|
<li>
|
|
<? printf(_("Operating System: %s"), PHP_OS) ?>
|
|
</li>
|
|
<li>
|
|
<? printf(_("Apache: %s"), apache_get_version()) ?>
|
|
</li>
|
|
<li>
|
|
<? printf(_("PHP: %s"), phpversion()) ?>
|
|
</li>
|
|
<li>
|
|
<? printf(_("MySQL: %s"), mysql_get_server_info()) ?>
|
|
</li>
|
|
</ul>
|