Skip to content

Commit

Permalink
[#27650] sample sites - category not found
Browse files Browse the repository at this point in the history
  • Loading branch information
hooduku authored and dextercowley committed Jan 10, 2012
1 parent 8fe5714 commit edd35fb
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
6 changes: 5 additions & 1 deletion includes/router.php
Original file line number Diff line number Diff line change
Expand Up @@ -215,6 +215,10 @@ protected function _parseSefRoute(&$uri)
$lang_tag = JFactory::getLanguage()->getTag();

foreach ($items as $item) {
//sqlsrv change
if(isset($item->language)){
$item->language = trim($item->language);
}
$length = strlen($item->route); //get the length of the route
if ($length > 0 && JString::strpos($route_lowercase.'/', $item->route.'/') === 0 && $item->type != 'menulink' && ($item->language == '*' || $item->language == $lang_tag)) {
// We have exact item for this language
Expand Down Expand Up @@ -477,4 +481,4 @@ protected function _createURI($url)

return $uri;
}
}
}
3 changes: 2 additions & 1 deletion installation/CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,10 @@ $ -> Language fix or change
# [#27479] Finder schema to support SQLServer
# [#27607] Sample Data for SQLServer and SQLAzure
# [#27635] JForm issue with Fabrik - proposed solution
# [#27630] Issue with replacePrefix -- valid only for SQLServer
# [#27630] Issue with replacePrefix -- valid only for SQLServer (thanks Rouven & Christophe)
+ [#27507] Add ablility to turn off the email to user when an Admin creates a user
# [#24602] Users with create rights in a category but not component can't create subcategories**
# [#27650] sample sites - category not found

09-Jan-2012 Jean-Marie Simonet
# [#27671] Hathor Global configuration not working. Thanks Andrea.
Expand Down

0 comments on commit edd35fb

Please sign in to comment.