No ordermethod = title
<DynamicPageList> namespace = help ordermethod = title </DynamicPageList>
That falls back to created. There is no way to force proper sorting by title without filtering by categories. That query does make sense on small company wikis... Anyway, fix:
switch ( $arg ) {
case 'title':
$orderMethod = 'title';
break;
and
switch ( $orderMethod ) {
case 'title':
$sqlSort = 'page_title';
break;