R_J
AdminR_J Admin
-
Re: Fatal Error enabling Advanced Editor
Seems like you have an incomplete upload. Try to re-upload all Vanilla files (not the plugin) (View Post)1 -
Re: DiscussionModel, CategoriesController, and You in 2.1b1
There is already an answer on GitHub and the answer is promising. It lets me assume that you would be able to do public function discussionModel_beforeGet_handler($sender, $args) { Gdn::sql()->ord… (View Post)1 -
Re: DiscussionModel, CategoriesController, and You in 2.1b1
The SortField is checked against $AllowedSortFields, that's true, but there is also the method allowedSortFields() and you can add your own column to the $AllowedSortFields array with it (View Post)1 -
Re: DiscussionModel, CategoriesController, and You in 2.1b1
The orderBy() method takes a string of fields, so you would be able to pass more than one sort field (comma separated in a string, I guess). But first you have to add that string to the $AllowedSortF… (View Post)1 -
Re: How to turn off emoticons
Add $Configuration['Garden']['EmojiSet'] = none; to your /conf/config.php. If you use the advanced editor, you have to add the following code "somewhere": public function editorPlugin_toolb… (View Post)3