The only thing I really need is the shop.

Any idea on an ETA?
Have you checked the Registered User's group permissions? Maybe it's because of that. Try to check every single group to be sure it's not that.iflo90 wrote:Thanks for this great extension.
I have actually a problem. Users get no points for her posts. They only get one point for the first post
Only me get points for every post.
Wow, this plugin ahead all phpbb functionality for 10 years at this direction.Gordon_Freeman wrote:viewtopic.php?f=496&t=2336286
For engine Vbulletin there is one very interesting plugin. He called Vbexpirience.
Detailed information about the plugin: https://www.vbulletin.org/forum/showthread.php?t=245023 Will created something similar for PHPBB? PS I'm sorry. I do not know the English language.
The non-english letters doesnt appear in tip info (its changes into ??????????).Elias wrote:Anyone have any idea on the known bugs with this extension?
Thanks
I have phpbb forum.Gordon_Freeman wrote:ddwnload this plugin
acp/caramel_module.phpMadCon88 wrote:Hi, thank you for this ext![]()
Can you fix encoding in notifications please? For example if I use č, š, ..in message (donate), in notification there are ? instead that letters.
Thank you
Code: Select all
$config_vals[$temp_name] = ($this->request->is_set_post($temp_name) && $this->request->variable($temp_name, '') !== '')
? $this->request->variable($temp_name, $default_val) : $this->config[$temp_name];
Code: Select all
$config_vals[$temp_name] = ($this->request->is_set_post($temp_name) && $this->request->variable($temp_name, '') !== '')
? utf8_normalize_nfc($this->request->variable($temp_name, $default_val, true)) : $this->config[$temp_name];
Code: Select all
'message' => $this->request->variable('message', '')
Code: Select all
'message' => utf8_normalize_nfc($this->request->variable('message', '', true))
Code: Select all
'DONATION_MESSAGE_IN' => this->request->variable('message', ''),
Code: Select all
'DONATION_MESSAGE_IN' => utf8_normalize_nfc($this->request->variable('message', '', true)),