#5636: Fixed a bug with AliasStorage.Remove method.

Fixes #5636
This commit is contained in:
Sipke Schoorstra
2015-08-13 13:48:00 +01:00
parent 06e4d2f7f8
commit 564fdc27be

View File

@@ -90,7 +90,7 @@ namespace Orchard.Alias.Implementation.Storage {
}
public void Remove(string path) {
Remove(x => x.Path == path && x.Source == path);
Remove(x => x.Path == path);
}
public void Remove(string path, string aliasSource) {