Changeset 1884 for trunk/admin/intro.php


Ignore:
Timestamp:
Mar 9, 2007, 11:52:22 PM (17 years ago)
Author:
rub
Message:

Add DateTime on administration introduction page (Useful to help user on the forum, ...)
Move history configuration in a other tab.
Use translation on picture hint (Kb).
Show hint oh the menu text (not only on counter)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/admin/intro.php

    r1726 r1884  
    184184;';
    185185list($nb_comments) = mysql_fetch_row(pwg_query($query));
     186
     187$php_current_timestamp = date("Y-m-d H:i:s");
     188list($db_current_timestamp) = mysql_fetch_row(pwg_query('SELECT CURRENT_TIMESTAMP;'));
    186189
    187190$template->assign_vars(
     
    206209    'DB_COMMENTS' => sprintf(l10n('%d comments'), $nb_comments),
    207210    'U_CHECK_UPGRADE' => PHPWG_ROOT_PATH.'admin.php?action=check_upgrade',
    208     'U_PHPINFO' => PHPWG_ROOT_PATH.'admin.php?action=phpinfo'
     211    'U_PHPINFO' => PHPWG_ROOT_PATH.'admin.php?action=phpinfo',
     212    'PHP_DATATIME' => $php_current_timestamp,
     213    'DB_DATATIME' => $db_current_timestamp,
    209214    )
    210215  );
Note: See TracChangeset for help on using the changeset viewer.