Installed on my test forum from the zip downloaded last night, I noticed a few things;
1. I could not do this part of the instructions ;
PHP Code:
------------------------------
Open: /forumroot/memberlist.php
------------------------------
Find:
LEFT JOIN " . TABLE_PREFIX . "usertextfield AS usertextfield ON(usertextfield.userid=user.userid)
LEFT JOIN " . TABLE_PREFIX . "userfield AS userfield ON(userfield.userid=user.userid)
------------------------------
Underneath add:
LEFT JOIN " . TABLE_PREFIX . "journals AS journals ON(journals.journalist_id=user.userid)
------------------------------
Find:
SELECT user.*,usertextfield.*,userfield.*, user.userid,
------------------------------
Add next to that:
journals.journal_id,
------------------------------
As those lines are not in my memberlist.php
2. The following phrases seemed to be missing;
"can_report_entries" = "Can Report Journal Entries"
"journal_mood_updated_successfully" = "Journal Mood Updated Successfully"
3. On first use, most of the phrases in the usergroup display were not displaying, I had to create an english translation of the "journal_permissions", then they all appeared.
4. If I allow
guests access to view journals (as I plan to) they can see all journals and entries marked as private, this is very bad.
5. Logged in users can see private entries listed in various places (like the Forum's Journal list, or private individual entries in the "last entries" list - although they do at least get a "no permissions" error if they try and view them. Really they should just not appear at all.
6. I set mine so that new journals had to be approved (moderated), but new entries did not. As a result, when a new journal was created, the first entry was visible even though I had not yet approved the journal itself.
Other than this it seems ok so far, but these permission things need sorting.