R_J
AdminR_J Admin
-
Re: Basic Pages - Recent Discussions shown next page
Using the ampersand is a normal operator in php for referencing a variable and has nothing to do with vanilla $a = $b If $b has value 1, $a will have it, too. But if you make $a = 2, $b will not chan… (View Post)2 -
Re: How may Plugins Sorted?
Not sure if this is already correctly implemented, but in theory you can add a key to the PluginInfo: 'Priority' => 42, If that's not working, you have to implement your own queue, … (View Post)6 -
Re: Tempbanning user
You need to rename the file default.php to TempBanPlugin.php or class.tempban.plugin.php Change line 15 in that file from class TempBan extends Gdn_Plugin { to class TempBanPlugin extends Gdn_Plugin … (View Post)2 -
Re: Any functions built-in to slugify a string?
slugify uses iconv to "transliterate" // transliterate $text = iconv('utf-8', 'us-ascii//TRANSLIT', $text); (View Post)1 -
Re: Could anyopne make IndexDiscussionImage work in 2.8?
I've forked it and you can try that altered version (View Post)2
