Skip to content
Snippets Groups Projects
Commit c4253a1f authored by Akshath's avatar Akshath
Browse files

Bug - Picklist editor failing to load

parent de7938e2
No related branches found
No related tags found
1 merge request!343Fix #305
......@@ -110,7 +110,7 @@ Settings_Vtiger_Edit_Js("Settings_Workflows_Edit_Js", {
},
getPopUp: function (container, flag) {
getPopUp: function (container) {
var thisInstance = this;
if (typeof container == 'undefined') {
container = thisInstance.getContainer();
......@@ -811,7 +811,7 @@ Settings_Vtiger_Edit_Js("Settings_Workflows_Edit_Js", {
jQuery.each(fields, function (i, field) {
thisInstance.loadFieldSpecificUi(jQuery(field));
});
this.getPopUp(jQuery('#saveTask'), true);
this.getPopUp(jQuery('#saveTask'));
},
registerVTPushNotificationTaskEvents: function () {
this.registerFillMailContentEvent();
......
......@@ -102,7 +102,7 @@ class Settings_Picklist_Field_Model extends Vtiger_Field_Model {
* @param type $fieldName -- string
* @return type -- array of values
*/
public static function getEditablePicklistValues($fieldName){
public function getEditablePicklistValues($fieldName){
$cache = Vtiger_Cache::getInstance();
$EditablePicklistValues = $cache->get('EditablePicklistValues', $fieldName);
if($EditablePicklistValues) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment