(fedmenu/wiki) Try to capture user subpages too.

This commit is contained in:
Ralph Bean 2015-04-30 01:08:25 +00:00
parent 156871c323
commit bef0d6be44

View file

@ -353,7 +353,7 @@ class FedoraTemplate extends QuickTemplate {
'position': 'bottom-right',
<?php
$subject = $skin->getTitle()->getInternalURL();
$pattern = '/User:([a-zA-Z0-9]+)$/';
$pattern = '/User:([a-zA-Z0-9]+)[\/$]/';
preg_match($pattern, $subject, $matches);
if (sizeof($matches) == 2):
echo "'user': '" . strtolower($matches[1]) . "',";