diff --git a/Application/functions.js b/Application/functions.js index 04cda7fa..e0e3ca18 100644 --- a/Application/functions.js +++ b/Application/functions.js @@ -8,19 +8,6 @@ function constructor(name) { } -/** - * overrides the internal href-function, as - * helma.framework.core.Application.getNodeHref(Object,String) - * isn't able to compute correct urls for non-node objects. - * @arg action of application - */ -function href(action) { - var url = getProperty("baseURI"); - url = (url==null || url=="null") ? "" : url; - url += this.name + "/" + ( (action!=null && action!="") ? action : "main" ); - return url; -} - /** * return true/false to determine if application is running