From 2059261eebebe15383d7175212b0cc9f5a25da33 Mon Sep 17 00:00:00 2001 From: "Alexander A. Klimov" Date: Thu, 17 Dec 2015 18:05:49 +0100 Subject: [PATCH] NavigationItemForm: use the new target names in createElements() refs #10330 --- application/forms/Navigation/NavigationItemForm.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/application/forms/Navigation/NavigationItemForm.php b/application/forms/Navigation/NavigationItemForm.php index cd6eca70d..4e63cab56 100644 --- a/application/forms/Navigation/NavigationItemForm.php +++ b/application/forms/Navigation/NavigationItemForm.php @@ -38,10 +38,10 @@ class NavigationItemForm extends Form 'label' => $this->translate('Target'), 'description' => $this->translate('The target where to open this navigation item\'s url'), 'multiOptions' => array( - '_blank' => $this->translate('New Window'), - '_next' => $this->translate('New Column'), - '_main' => $this->translate('Single Column'), - '_self' => $this->translate('Current Column') + 'new_window' => $this->translate('New Window'), + 'next_column' => $this->translate('New Column'), + 'single_column' => $this->translate('Single Column'), + 'current_column' => $this->translate('Current Column') ) ) );