Fixed bug when grouping image tags (galleries) by alphabet

This commit is contained in:
Tobi Schäfer 2007-08-09 15:45:14 +00:00
parent 7d44d4560c
commit 3da0922914

View file

@ -1957,7 +1957,7 @@ Site.prototype.getTags = function(type, group) {
case Tags.ALPHABETICAL: case Tags.ALPHABETICAL:
return handler[group + type.titleize()]; return handler[group + type.titleize()];
default: default:
return handler.alphabeticalTags.get(group); return handler["alphabetical" + type.titleize()].get(group);
} }
return null; return null;
}; };