Fix for Plugins: fixed a regression introduced in 3072 (dashboards not editable at all!!!)

SVN:trunk[3079]
This commit is contained in:
Romain Quetiez
2014-02-06 16:27:22 +00:00
parent cba75527b3
commit b7d8953ecb

View File

@@ -450,7 +450,8 @@ class JSPopupMenuItem extends ApplicationPopupMenuItem
/** @ignore */
public function GetMenuItem()
{
return array ('label' => $this->GetLabel(), 'onclick' => $this->sJSCode.' return false;', 'url' => '#');
// Note: the semicolumn is a must here!
return array ('label' => $this->GetLabel(), 'onclick' => $this->sJSCode.'; return false;', 'url' => '#');
}
/** @ignore */