no_useragents
no_useragents.inc
- <?php
- // vim:filetype=php expandtab tabstop=2 softtabstop=2 shiftwidth=2 autoindent smartindent
- function tribune_no_useragents_info() {
- 'description' => t('Hides useragent information.'),
- 'weight' => -1,
- );
- }
- function tribune_no_useragents_filter(&$post, &$help) {
- if ($post['login']) {
- $post['info'] = $post['login'];
- } else {
- $post['info'] = t("Anonymous");
- }
- }