Code

Fixed htmlentity problem
authorhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Thu, 2 Feb 2006 07:50:42 +0000 (07:50 +0000)
committerhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Thu, 2 Feb 2006 07:50:42 +0000 (07:50 +0000)
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@2618 594d385d-05f5-0310-b6e9-bd551577e9d8

plugins/admin/applications/class_applicationGeneric.inc

index 0918b0f031cf82a4d098f4af11b6e6eea0b153f1..be7001e95b67a621c0cc7cad99fb4a9451a976a9 100644 (file)
@@ -146,10 +146,9 @@ class application extends plugin
                        $smarty->assign("$val", "");
                }
        }
-       $smarty->assign("gotoLogonScript",$this->gotoLogonScript);
+       $smarty->assign("gotoLogonScript",htmlentities($this->gotoLogonScript));
        $smarty->assign("base_select", $this->base);
        $smarty->assign("gosaApplicationFlagsACL", chkacl($this->acl, "gosaApplicationFlags"));
-
        /* Show main page */
        return($smarty->fetch (get_template_path('generic.tpl', TRUE)));
   }