I had the same problem. By changing the % to %s in the language file after the Action Failed message i got an report back that complained over an SQL field 'pm_enabled' that's not in my database.
I (temporary) worked around te problem by commenting out line 133 in com_joobb\system\joobbuser.php
Code
133 // $this->_joobbUserTable->pm_enabled = $joobbConfig->getUserSettingsDefaults('enable_private_message');
This fixed the problem for me. But of course it's a workaround. Properly a new implemented function that didn't install correct?
Hi, The Normal, Sticky and Announced values are filled in "views/edittopic/view.html.php on line 311, 315 and 321.
The values are hard coded, so there's (not yet) an translation value in the INI files for it.
For the Yes and No values: All select boolean lists are using the JHTML::_() function like this :
JHTML::_('select.booleanlist', $tag_name, '', $selected);
But instead of using 4 arguments they should use the following function overload:
JHTML::_('select.booleanlist', $tag_name, $tag_attribs, $selected, $yes, $no, $id ) ;
And make the $yes and the $no translatable
In the new beta release (0.7.6) i can select an image in a post as attachment. I can press the attach button and the filename is shown. But when i post te message the image is not shown in the message.
Maybe a feature request : can you make it possible to add an attachment when you create a new topic? Now the option is only shown (unfortunatly not working) when a user creates a reply.

