Charlie Powell

Results 34 comments of Charlie Powell

After far too many hours on the keyboard, we have a functioning BB install w/ Kohana 3.3 on PHP 7 and MariaDB 10! I will continue testing with legacy data...

Old ticket, but figured I'd post here as well. Kohana 3.3 supports MySQLi. They however changed how autoloading works, so every application class will need its filename updated, (app/classes/beans/report.php for...

I'm just leaving what we do currently, as it addresses i18n from within smarty. We created a function called `t` and use string placeholders for the text to replace. For...

I hadn't thought of contexts, but the developer is more than welcome to prefix their i18n string with something meaningful for the context; such as STRING_MENU_PRINTER_OPEN and STRING_MENU_FILE_OPEN. For the...

https://github.com/cdp1337/smarty/commit/9aba25834b64292848cbe822bf8cc2ed3042f21c I modified Smarty core by changing the line ``` $compiler->trigger_template_error('too many shorthand attributes', null, true); ``` with ``` $_indexed_attr[] = $mixed; ``` I found it strange that some internal...

@uwetews because there's a test case that checks this exact bug/feature that I fixed. It's expecting an exception to be thrown in that event and using my script it goes...

Oddly enough I've never been a huge fan of printf/sprintf... don't know why. Probably why I opted for `[%N%]` over `%N[sdf]`. What I meant by speeding up development is when...

![image](https://user-images.githubusercontent.com/737865/200132804-6070a7e3-5e3e-48d4-aca2-8089e25cb66a.png) I recently found this project and am having some fun. ;)

Office with average email size of 20k, about 50k messages. Design agency with average email size of 5M, about 200.

Won't work, given the example `{.class name=my_field}` Now you have name="my field" when you were expecting my_field. In theory, potentially a better solution would be to support `{.class_name rel=att1 rel=att2}`,...