What steps will reproduce the problem?
1. Edit ./index.php
What version of the product are you using?
2.4.2
Please provide any additional information below.
Now 71~77 lines of ./index.php file is here
$old_alias = $url_data[2];
if (strlen($alias) > 0) {
if ($old_alias != $alias) {
$create = true;
}
}
At this context, alias_exists($alias) is false. So ($old_alias != $alias) is
always true.
Then, above scripts can be replaced with the scripts the following.
if (strlen($alias) > 0) {
$create = true;
}
Sincerely,
Kenneth Roy
noersoft@gmail.com
Original issue reported on code.google.com by noers...@gmail.com on 8 Sep 2011 at 4:03
Original issue reported on code.google.com by
noers...@gmail.com
on 8 Sep 2011 at 4:03