Julián Landerreche

Results 11 comments of Julián Landerreche

**Extra note about multi-select and having a first empty option.** When you create a multi-select field by calling the `glz_selectInput` function in a "Custom Script" custom field, you get an...

One more thing: this bug also affects "built-in" multi-selects that doesn't have a {default value} configured (and thus, they are rendered with a first empty option) . By "built-in" multi-selects...

Just in case anyone wants to patch the plugin, this is a version of function glz_selectInput, based on the possible fixes I suggested on the opening post. ``` function glz_selectInput($name...

This is the original `glz_selectInput` function: ``` function glz_selectInput($name = '', $id = '', $arr_values = '', $custom_value = '', $default_value = '', $multi = '') { if ( is_array($arr_values)...

And this is **a second take, that relies on declaring an extra parameter** ``` function glz_selectInput($name = '', $id = '', $arr_values = '', $custom_value = '', $default_value = '',...

You are welcome, Gerhard. Please, double check the hack, as I'm not a PHP expert (not even a noob!) and who knows if I didn't introduce any bug or security...

Hi gerhard. As you suggest, having the `custom_n` may be enough to get the corresponding custom field name. I can't recall exactly on which context/idea/mood/time I asked for this feature....

Oh, I missed this issue and posted a similar (if not exactly the same) request here: http://groups.google.com/group/tomighty/browse_thread/thread/7291180c317af34d Will stay tuned to this issue.

What about using double double-quotes or double single-quotes wrapping the text? On Sat, 20 Oct 2018, 18:57 Phil Wareham, wrote: > Agree that legacy syntax should not be changed in...

What I did was to open the `package.json` file on `node_modules/punch/`, edit the dependencies to match exactly the version number Punch was build for. For example, I changed: `"uglify-js": ">=...