Last modified: 2010-06-02 05:37:03 UTC
Example: <imagemap> Image:Audio-card.svg|thumb|right|250px|Desc rect 0 0 48 48 [[Template:Motd/{{{month|01}}}-{{{day|01}}}]] desc bottom-left </imagemap> Fails because of the {{{month|01}}}-{{{day|01}}} part. The non-dynamic: <imagemap> Image:Audio-card.svg|thumb|right|250px|Desc rect 0 0 48 48 [[Template:Motd/01-01]] desc bottom-left </imagemap> Works. This causes issues when using an image as a placeholder for a link elsewhere.
This is a known bug: {{{template parameters}}} don't work inside <tags>. Fix: {{#tag:imagemap|stuff that goes inside the tag}} Will find the bug number and dupe this.
*** This bug has been marked as a duplicate of bug 2257 ***
Done. =================================================================== Index: InitialiseSettings.php =================================================================== --- InitialiseSettings.php (revision 813) +++ InitialiseSettings.php (working copy) @@ -5143,7 +5143,7 @@ 'hewiki' => array( 'user' => array( 'move' => false, 'upload' => true,), 'sysop' => array( 'deleterevision' => true), - 'patroller' => array( 'patrol' => true, 'autopatrol' => true, 'unwatchedpages' => true ), + 'patroller' => array( 'patrol' => true, 'autopatrol' => true, 'unwatchedpages' => true, 'rollback' => true, ), 'autopatrolled' => array( 'autopatrol' => true ), ), 'hrwiki' => array(
Ignore comment 3, this was supposed to go to a different bug report :-(