Search found 10 matches

by n - i - i
03 Apr 2017, 12:29
Forum: Customizations
Topic: Distinguish Admins
Replies: 11
Views: 21007

Re: Distinguish Admins

Changing the badges was actually way easier. I attached a new version of the plugin, it's tested for MantisBT Version 2.3 . The required changes are: 1) Change the required css classes to the following (or use the attached default.css file): .bnhl_10{ background-color: #000000 !important;} .bnhl_10:...
by n - i - i
27 Mar 2017, 15:08
Forum: Customizations
Topic: Distinguish Admins
Replies: 11
Views: 21007

Re: Distinguish Admins

The required changes are a bit more complicated now and I don't have the time at the moment. I'll try to look into it within the next few days, but I can't promise.
by n - i - i
10 Feb 2017, 20:32
Forum: Help
Topic: MantisBT 2.0/2.1: Customizing Strings
Replies: 4
Views: 4725

MantisBT 2.0/2.1: Customizing Strings

Hello, the Admin Guide for Mantis 2.0.0 describes a new format for implementing custom strings for multiple languages via the $s_custom_messages array (https://mantisbt.org/docs/master/en-US/Admin_Guide/html-single/#admin.customize.strings ). This does not seem to work for 2.1.0. I did a quick searc...
by n - i - i
18 Aug 2016, 17:00
Forum: Deutsch
Topic: Versand einer E-Mail nur einmalig
Replies: 1
Views: 4444

Re: Versand einer E-Mail nur einmalig

Mit dem Plugin-System kann man so ziemlich alles bauen. :wink: https://mantisbt.org/docs/master-1.3.x/en-US/Developers_Guide/html-single/#dev.plugins (engl.) Die viel bessere Frage wäre die nach dem Aufwand. Ich habe im Moment keine Zeit, um ein derartiges Plugin zu bauen, aber ein paar Anregungen k...
by n - i - i
18 Aug 2016, 16:41
Forum: Customizations
Topic: Distinguish Admins
Replies: 11
Views: 21007

Re: Distinguish Admins

Yup, there's a way - and it's actually not that complicated. There are a few changes required for Mantis version 1.3.0 : 1) The required css classes changed a little bit: .bnhl_10 > td.bugnote-meta { background-color: #ffffff; } .bnhl_10 > td.bugnote-note { background-color: #ffffff; } .bnhl_25 > td...
by n - i - i
09 Feb 2015, 08:22
Forum: Customizations
Topic: How can I hide the "my_view_page.php" page?
Replies: 1
Views: 3510

Re: How can I hide the "my_view_page.php" page?

Since there's no config option to disable this page (as far as I know), you can simply comment out the relevant line. For mantis 1.2.19 change: # My View $t_menu_options[] = '<a href="' . helper_mantis_url( 'my_view_page.php">' ) . lang_get( 'my_view_link' ) . '</a>'; to # My View # $t_men...
by n - i - i
04 Feb 2015, 14:12
Forum: Customizations
Topic: Add monitor user on reporting a new issue
Replies: 12
Views: 24313

Re: Add monitor user on reporting a new issue

Alright, got it. We use the term "owner" in another way, that's why I was a little bit confused. I wrote a simple plugin, it adds the old handler (the user the issue is assigned to) to the monitor list every time the handler is about to get changed. It is of course not necessary to add the...
by n - i - i
02 Feb 2015, 22:06
Forum: Customizations
Topic: Add monitor user on reporting a new issue
Replies: 12
Views: 24313

Re: Add monitor user on reporting a new issue

Atrol, Do you think your plugin could be modified to add people assigned as owners of a bug to the monitor list? Some of our bugs change hands quite a bit and it would be good to keep everyone in the loop on progress Do I understand you correctly, every time the reporter of an issue changes, you wa...
by n - i - i
01 Feb 2015, 21:27
Forum: Deutsch
Topic: (bitte auswählen) im benutzerdefinierten Feld
Replies: 1
Views: 3971

Re: (bitte auswählen) im benutzerdefinierten Feld

Was spricht denn gegen den Typ "Auswahlkästchen"? Standardwert einfach leer lassen und die Option "Erforderlich für neue Reports" aktivieren (und vermutlich auch "Bei Eintragserfassung anzeigen"). Es gibt dann zwar nicht den Hinweis "bitte auswählen", aber das...
by n - i - i
01 Feb 2015, 21:10
Forum: Customizations
Topic: Distinguish Admins
Replies: 11
Views: 21007

Re: Distinguish Admins

I wrote a little plugin that afternoon; yeah... quick and dirty, I know, but it should do the job or at least give you some ideas of how to implement something similar. :wink: Mantis version is 1.2.19. EDIT: Note: This version of the plugin does not work properly with Mantis v1.3.0 . See below for t...