businessdad
MVPHackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
businessdad MVP
Reactions
-
Re: 404 Site - Where and under which file name?
To avoid your page being overwritten, you can just place filenotfound.php in your theme folder. Put it into you_theme_folder/views/home, Vanilla will pick it up automatically. :) (View Post)4 -
Re: How do I go about calling a function (method) in one plugin from another plugin.
You can call other plugins by using Gdn::PluginManager(). Simplest example: // Retrieve plugin by class name$PluginInstance = Gdn::PluginManager()->GetPluginInstance('PluginOne');// Same as above,… (View Post)4 -
Re: How to force Simple HTML with Button Bar?
@StumpyJoe, @peregrine is right, you will need to convert existing posts before changing the format column. To check if conversion works properly, you can use the following tool: http://bbcode-to-htm… (View Post)2 -
Re: User Registration Log
These operations should be recorded in table GDN_Activity. You can run a query filtering by Activity Type and find out who did what. The Activity Type IDs you are interested in should be 1, 2, 3, 4 a… (View Post)1 -
Re: Is it possible to set plugins permissions on a per Category basis?
I think I found out what's happening, and I think it's due to a bug. Here's the (long) story. When a new Permission is registered by a plugin, its name is, usually, Plugins.SomePlugin.SomePermission.… (View Post)1