Search found 1611 matches

by cas
26 Jan 2024, 07:26
Forum: General Plugin Discussion
Topic: Statistics plugin released
Replies: 3
Views: 8206

Re: Statistics plugin released

Thanks for the correction, typo from my side.
Recently released version 1.1.0 which should be warning-proof under Mantis 2.26 and added some functionalities as online scaling of the graphs and the option for downloading the data set used for the graphs.
by cas
25 Jan 2024, 15:48
Forum: General Discussion
Topic: Adding monitoring for other users on bug creation
Replies: 3
Views: 2409

Re: Adding monitoring for other users on bug creation

for the first adjustment, the line is found near the end and reads:
include( dirname( __FILE__ ) . '/account_prefs_inc.php' );

The last adjustment should be done just before the line layout_page_header();
by cas
24 Jan 2024, 14:17
Forum: Help
Topic: Comments marked private being sent on ticket close - is this a plugin issue instead?
Replies: 6
Views: 19367

Re: Comments marked private being sent on ticket close - is this a plugin issue instead?

That was the issue. Someone with that level will see private notes :D
by cas
24 Jan 2024, 13:11
Forum: General Plugin Discussion
Topic: Problem with Plugin (EVENT & USER)
Replies: 2
Views: 2481

Re: Problem with Plugin (EVENT & USER)

Try this code:

Code: Select all

if( !auth_is_user_authenticated() ) {
	$user_color_theme = 'default';
   } else {
   	// logged in
	$user_id = auth_get_current_user_id();
    	$user_color_theme = plugin_config_get('color_theme', 'default', false, $user_id); // load color theme for specific user
    }
by cas
19 Jan 2024, 07:34
Forum: Help
Topic: Better solution than MantisBT
Replies: 13
Views: 8127

Re: Better solution than MantisBT

Perhaps there is a plugin to allow for voting on a topic? That would then give everyone a chance to prioritize things for the devs to focus on, similar to how Plex does it on their forum. And they have a TON of users globally, so something like that was needed. For Mantis there is such a plugin, no...
by cas
17 Jan 2024, 17:36
Forum: Help
Topic: Rename "Steps To Reproduce"
Replies: 3
Views: 2261

Re: Rename "Steps To Reproduce"

yep, best copy the 3 lines from lang/strings_english.txt and adjust to your liking in config/custom_strings_inc.php :mrgreen:
by cas
17 Jan 2024, 14:31
Forum: Help
Topic: Rename "Steps To Reproduce"
Replies: 3
Views: 2261

Re: Rename "Steps To Reproduce"

Hi karl, do not touch the database. You can change this using a file called custom_strings_inc.php within the config directory. If the file does not exist. you need to create it with the following content: <?PHP $s_steps_to_reproduce_updated = 'Route Cause Analysis Updated'; $s_steps_to_reproduce = ...
by cas
15 Jan 2024, 17:18
Forum: General Plugin Discussion
Topic: Statistics plugin released
Replies: 3
Views: 8206

Statistics plugin released

# Statistics Version 1.0.0 Available for mantis 2.x The Statistics plugin presents statistical overviews in graphics and/or table lay-out of your Mantis installation. This plugin is based upon MantisStats|Lite as created by Avetis Avagyan (www.MantisStats.org). I have tried to get in touch with him ...
by cas
12 Jan 2024, 08:09
Forum: General Plugin Discussion
Topic: Clone Project plugin
Replies: 5
Views: 85105

Re: Clone Project plugin

Copy Hierarchy means (at least that is the intention) that if the project you clone is a sub-project, the cloned project should be created also as a sub-project. In all other cases it will be created as a top-level project.. As for copying sub-projects, this is possible within Mantisbt. A project ca...
by cas
11 Jan 2024, 07:28
Forum: Help
Topic: Issues in export to excel (.xlsx)
Replies: 2
Views: 12220

Re: Issues in export to excel (.xlsx)

You can open the xml with excel so no issue :mrgreen:
by cas
11 Jan 2024, 07:23
Forum: Help
Topic: Delete button
Replies: 1
Views: 8928

Re: Delete button

Which plugins have you installed? This button is not standard afaik.
by cas
11 Jan 2024, 07:20
Forum: Help
Topic: where are these buttons?
Replies: 1
Views: 9322

Re: where are these buttons?

So that is normal, what do you want? Remove them also?
by cas
11 Jan 2024, 07:18
Forum: General Plugin Discussion
Topic: Clone Project plugin
Replies: 5
Views: 85105

Re: Clone Project plugin

No, this was a bug I missed. Fixed in version 2.04.
Download updated version on the same place ( https://github.com/mantisbt-plugins/Cloneproject).
by cas
07 Jan 2024, 11:38
Forum: General Plugin Discussion
Topic: Plugin updates for version 2.26
Replies: 0
Views: 122247

Plugin updates for version 2.26

Within Mantis 2.26 , a function (print_succesful_redirect) has been deprecated, to be used is function print_header_redirect. Many plugins used this function which may generate a warning (depends on your error-level set). Many plugins already have been updated and are available on Github :D Updates ...