tessus / mwExtensionMantis

MediaWiki Extension:Mantis
https://www.mediawiki.org/wiki/Extension:Mantis
GNU General Public License v2.0
2 stars 6 forks source link

Using a single bugid is not showing anything #15

Closed matthias-meisinger closed 7 years ago

matthias-meisinger commented 7 years ago

Expected Behaviour: The set Issue shows up on the wiki page. Instead: Nothing shows (No error/warning).

Cause: Array call $conf[bugid] is missing apostrophs in some places. Fix: $conf[bugid] -> $conf['bugid']

Environment: MediaWiki 1.26.2 PHP 5.6.29-0+deb8u1 (apache2handler) MySQL 5.5.54-0+deb8u1 MantisBT-Version 1.3.0 Schema-Version 209

tessus commented 7 years ago

I am not able to reproduce the issue. Do you get any warnings/error in the php error log (the one that is specified in /etc/php.ini)?

Product Version
MediaWiki 1.26.3
PHP 5.6.30 (apache2handler)
MySQL 5.6.25
MantisBT Version 1.2.19
Schema Version 183
matthias-meisinger commented 7 years ago

Can't. I already fixed it on my system.

Am 21.02.2017 17:59 schrieb "Helmut K. C. Tessarek" < notifications@github.com>:

I am not able to reproduce the issue. Do you get any warnings/error in the php error log (the one that is specified in /etc/php.ini)? Product Version MediaWiki 1.26.3 PHP 5.6.30 (apache2handler) MySQL 5.6.25 MantisBT Version 1.2.19 Schema Version 183

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/tessus/mwExtensionMantis/issues/15#issuecomment-281406566, or mute the thread https://github.com/notifications/unsubscribe-auth/AFjdCIRwbQpTUCoVDJgJBa3hzoA9QOYIks5rexgKgaJpZM4MGeam .

tessus commented 7 years ago

No idea why this is not working for you. However, single quotes for keys is better PHP coding. Will apply #16