Przeglądaj źródła

fixed bug in route tool

Piotr Labudda 8 lat temu
rodzic
commit
dbbc5c09a6
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      SE/se-lib/RouteToolBase.php

+ 1 - 1
SE/se-lib/RouteToolBase.php

@@ -5,7 +5,7 @@ Lib::loadClass('RouteBase');
 class RouteToolBase extends RouteBase {
 
 	public function getUrlRouteName() {
-		return "UrlAction_" . get_class($this);
+		return "UrlAction_" . substr(get_class($this), strlen('RouteTool_'));
 	}
 
 }