Fed
Fed
sure, I'll work on it. @webnull if you need an i18n tag you can create one with register_tag, in example_all.php there's an example for it that uses the following syntax:...
This is an interesting pull request, I needed this functionality. @xPaw sandbox and auto_escape have different responsibility, the first should make the code safe by PHP injection in those project...
so your suggestions are: with `auto_escape => true` use `{$var|safe}` to avoid the escape `with auto_escape => false` use `{$variable|escape}` to escape the variable Yes, this is the best solution....
I partially agree, for back compatibility is better to keep it this way by default. Performances aren't a big issue. We can consider to add a new configuration $conf['allow_empty_loop'], but...
I don't want to add more tags. I'm thinking instead to implement a custom tags feature that works with autoload. So you'll be able to create a {isLast} tag yourself.
I see your point. Well you can still do something like this: ``` {$isLast="$counter = count($breadcrumbs)-1"} ``` and than use {$isLast} ``` {if="$isLast"} ... {/if} ``` I'll consider to add...
Hey, I prefer to disallow variables that starts with numbers `{$1title}`, but I agree that Parse error is an error that we want to avoid completely. I'll check to see...
Great! From my iPhone > On Mar 31, 2014, at 10:18 AM, patrickse [email protected] wrote: > > I´ve solved my problem. I am now using the PluginFramework and replacing the...
Thanks! From my iPhone > On Dec 13, 2013, at 12:47 PM, Dominik Hardtke [email protected] wrote: > > I think all the error messages look ugly (if they work, because...
@xPaw if you can create a new pull request for this change I'll merge it. Thanks