Index: src/admin/includes/functions/general.php IDEA additional info: Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP <+>UTF-8 =================================================================== --- src/admin/includes/functions/general.php (revision be5231e4c5ceb8d95f3ac32413c7d4c8a19bdc42) +++ src/admin/includes/functions/general.php (revision ) @@ -1,9 +1,9 @@ '; } +/** + * Creates an input field of type number for configuration values that are required an must have min and max. + * IMPORTANT NOTE: name attribute gets replaced on admin/configuration.php:839 + * + * @param string $name Value of name attribute. + * + * @return string Input element of type number. + */ +function cfg_number_required_min_max_input($min, $max, $name) +{ + return ''; +} + // function for configuration values function gm_cfg_get_orders_status($orders_id) { @@ -2807,4 +2820,4 @@ $t_pull_down_html .= ''; return $t_pull_down_html; -} \ No newline at end of file +}