#82861 by RobRoy. Move watchdog overview variables to the right place.
parent
82ca828b03
commit
75c5ec2b39
|
@ -85,11 +85,6 @@ function watchdog_user($op, &$edit, &$user) {
|
|||
}
|
||||
|
||||
function watchdog_form_overview() {
|
||||
$icons = array(WATCHDOG_NOTICE => '',
|
||||
WATCHDOG_WARNING => theme('image', 'misc/watchdog-warning.png', t('warning'), t('warning')),
|
||||
WATCHDOG_ERROR => theme('image', 'misc/watchdog-error.png', t('error'), t('error')));
|
||||
$classes = array(WATCHDOG_NOTICE => 'watchdog-notice', WATCHDOG_WARNING => 'watchdog-warning', WATCHDOG_ERROR => 'watchdog-error');
|
||||
|
||||
$names['all'] = t('all messages');
|
||||
foreach (_watchdog_get_message_types() as $type) {
|
||||
$names[$type] = t('!type messages', array('!type' => t($type)));
|
||||
|
@ -114,6 +109,11 @@ function watchdog_form_overview() {
|
|||
* Menu callback; displays a listing of log messages.
|
||||
*/
|
||||
function watchdog_overview() {
|
||||
$icons = array(WATCHDOG_NOTICE => '',
|
||||
WATCHDOG_WARNING => theme('image', 'misc/watchdog-warning.png', t('warning'), t('warning')),
|
||||
WATCHDOG_ERROR => theme('image', 'misc/watchdog-error.png', t('error'), t('error')));
|
||||
$classes = array(WATCHDOG_NOTICE => 'watchdog-notice', WATCHDOG_WARNING => 'watchdog-warning', WATCHDOG_ERROR => 'watchdog-error');
|
||||
|
||||
$output = drupal_get_form('watchdog_form_overview');
|
||||
|
||||
$header = array(
|
||||
|
|
Loading…
Reference in New Issue