1
0
mirror of https://github.com/e107inc/e107.git synced 2025-01-16 20:28:28 +01:00

Update comment.php

This commit is contained in:
Gábor 2018-07-06 07:44:16 +02:00 committed by GitHub
parent 510453a870
commit 30409500ad
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -40,7 +40,7 @@ class comments_admin extends e_admin_dispatcher
// 'main/create' => array('caption'=> LAN_CREATE, 'perm' => '0'),
'main/prefs' => array('caption'=> LAN_PREFS, 'perm' => '0'),
// 'main/custom' => array('caption'=> 'Custom Page', 'perm' => '0')
'main/tools' => array('caption'=> 'Tools', 'perm' => '0'),
'main/tools' => array('caption'=> ADLAN_CL_6, 'perm' => '0'),
);
protected $adminMenuAliases = array(
@ -191,7 +191,7 @@ class comments_admin_ui extends e_admin_ui
$this->toolsProcessPage();
$text = "<form method='post' action='".e_SELF."?".e_QUERY."'>";
$text .= e107::getForm()->admin_button('recalcComments', 'Recalculate comment count');
$text .= e107::getForm()->admin_button('recalcComments', LAN_RECALCULATE_COMMENT_COUNT);
$text .= "</form>";
return $text;
@ -225,7 +225,7 @@ class comments_admin_ui extends e_admin_ui
}
}
}
$mes->addSuccess('Comment count successfully recalculated!');
$mes->addSuccess(LAN_SUCC_RECALCULATE_COMMENT_COUNT);
}
}