diff options
| author | Chad Kieffer <ckieffer@gmail.com> | 2009-07-21 19:40:48 -0600 |
|---|---|---|
| committer | Chad Kieffer <ckieffer@gmail.com> | 2009-07-21 19:40:48 -0600 |
| commit | 63511316be51f193d37c4f3b9dd3455a9ab60de8 (patch) | |
| tree | 74986ed982d37b06256d5d2501d609314ba52e4e /modules/gallery/views | |
| parent | 7f9e71d8cdcf99267adc2b4a6332e379a0fca0fc (diff) | |
| parent | f533aee1cc71e8db739406859ac0cf43dce030ec (diff) | |
Merge branch 'master' of git@github.com:gallery/gallery3
Diffstat (limited to 'modules/gallery/views')
| -rw-r--r-- | modules/gallery/views/admin_block_platform.html.php | 5 | ||||
| -rw-r--r-- | modules/gallery/views/quick_pane.html.php | 2 |
2 files changed, 5 insertions, 2 deletions
diff --git a/modules/gallery/views/admin_block_platform.html.php b/modules/gallery/views/admin_block_platform.html.php index 6b79f047..f27b9e7a 100644 --- a/modules/gallery/views/admin_block_platform.html.php +++ b/modules/gallery/views/admin_block_platform.html.php @@ -1,7 +1,10 @@ <?php defined("SYSPATH") or die("No direct script access.") ?> <ul> <li> - <?= t("Operating System: %operating_system", array("operating_system" => PHP_OS)) ?> + <?= t("Host name: %host_name", array("host_name" => php_uname("n"))) ?> + </li> + <li> + <?= t("Operating System: %os %version", array("os" => php_uname("s"), "version" => php_uname("r"))) ?> </li> <li> <?= t("Apache: %apache_version", array("apache_version" => function_exists("apache_get_version") ? apache_get_version() : t("Unknown"))) ?> diff --git a/modules/gallery/views/quick_pane.html.php b/modules/gallery/views/quick_pane.html.php index eabf4a67..e5469696 100644 --- a/modules/gallery/views/quick_pane.html.php +++ b/modules/gallery/views/quick_pane.html.php @@ -15,7 +15,7 @@ </span> </a> -<ul id="gQuickPaneOptions" style="display: none"> +<ul class="gQuickPaneOptions" style="display: none"> <? foreach ($button_list->additional as $button): ?> <li><a class="<?= $button->class ?>" href="<?= $button->href ?>" title="<?= $button->title ?>"> |
