mod_bookmarks2/mod_bookmarks2.lua
changeset 4852 5001104f0275
parent 4850 ad7767a9f3ea
child 4854 9187a7adfc39
equal deleted inserted replaced
4851:a280878c4ef2 4852:5001104f0275
    18 	["max_items"] = "max";
    18 	["max_items"] = "max";
    19 	["send_last_published_item"] = "never";
    19 	["send_last_published_item"] = "never";
    20 	["access_model"] = "whitelist";
    20 	["access_model"] = "whitelist";
    21 };
    21 };
    22 
    22 
    23 if not mod_pep.check_node_config(nil, nil, default_options) then
    23 if not pcall(mod_pep.check_node_config, nil, nil, default_options) then
    24 	-- 0.11 or earlier not supporting max_items="max" trows an error here
    24 	-- 0.11 or earlier not supporting max_items="max" trows an error here
    25 	module:log("debug", "Setting max_items=pep_max_items because 'max' is not supported in this version");
    25 	module:log("debug", "Setting max_items=pep_max_items because 'max' is not supported in this version");
    26 	default_options["max_items"] = module:get_option_number("pep_max_items", 256);
    26 	default_options["max_items"] = module:get_option_number("pep_max_items", 256);
    27 end
    27 end
    28 
    28