if u have for example 4 pages with the following titles (the first <h1>)
1st page title: 1. some text
2nd page title: 2. some text
3rd page title: 11. some text
4th page title: 4. some text
the result after sorting is
1. some text
11. some text
2.
4.
replacing
$b = strcmp($a_title, $b_title);
with $b = strnatcasecmp($a_title, $b_title);
in syntax.php Line 344
will do it but not tested for any side effects
30
Hi
if u have for example 4 pages with the following titles (the first
<h1>
)1st page title: 1. some text 2nd page title: 2. some text 3rd page title: 11. some text 4th page title: 4. some text
the result after sorting is
replacing
$b = strcmp($a_title, $b_title);
with$b = strnatcasecmp($a_title, $b_title);
in syntax.php Line 344 will do it but not tested for any side effectsbr