From c017148cb62a1a6f51bc8ce082b6b6aa0a861cfe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Steffen=20Schro=CC=88der?= Date: Sun, 12 Jan 2014 01:26:35 +0100 Subject: [PATCH] fml fix --- application/core/FML/Script/Script.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/core/FML/Script/Script.php b/application/core/FML/Script/Script.php index 705a67e1..86122e8d 100644 --- a/application/core/FML/Script/Script.php +++ b/application/core/FML/Script/Script.php @@ -476,7 +476,7 @@ Void " . self::FUNCTION_SETTOOLTIPTEXT . "(CMlControl _TooltipControl, CMlContro Text " . self::FUNCTION_GETTOOLTIPCONTROLID . "(Text _ControlClass) { declare ClassParts = TextLib::Split(\"-\", _ControlClass); - if (ClassParts.count < 2) return \"\”; + if (ClassParts.count < 2) return \"\"; if (ClassParts[0] != \"" . self::CLASS_TOOLTIP . "\") return \"\"; return ClassParts[1]; }";