Hello, I'm using php7 with Vanilla2.3
When i try to post a comment after the plugin enabled, i'm getting the following error:Whoops! There was an error.
Whoops! There was an error.
But if i reload the page, the post is wrote correctly. Whats wrong?
There is a newer version available on GitHub. If I were you, I would try it: https://github.com/vanilla/addons/tree/master/plugins/RoleTitle
Its working, thank you dude
Github version also does not work on 2.3 for me ... says 'The plugin folder was not properly defined' when trying to enable.
I did the following to fix the github version:
add an About array to the top of the class.roletitle.plugin.php file:
$PluginInfo['RoleTitle'] = array( 'Name' => 'Role Titles', 'Description' => "Lists users' roles under their name and adds role-specific CSS classes to their comments for theming.", 'Version' => '1.0', 'RequiredApplications' => array('Vanilla' => '2.3'), 'MobileFriendly' => TRUE, 'RegisterPermissions' => FALSE, 'Author' => "Matt Lincoln Russell", 'AuthorEmail' => '', 'AuthorUrl' => '' );
Not sure if the author is still correct, and I removed the email address and link.
Comments
There is a newer version available on GitHub. If I were you, I would try it: https://github.com/vanilla/addons/tree/master/plugins/RoleTitle
Its working, thank you dude
Github version also does not work on 2.3 for me ... says 'The plugin folder was not properly defined' when trying to enable.
I did the following to fix the github version:
add an About array to the top of the class.roletitle.plugin.php file:
$PluginInfo['RoleTitle'] = array(
'Name' => 'Role Titles',
'Description' => "Lists users' roles under their name and adds role-specific CSS classes to their comments for theming.",
'Version' => '1.0',
'RequiredApplications' => array('Vanilla' => '2.3'),
'MobileFriendly' => TRUE,
'RegisterPermissions' => FALSE,
'Author' => "Matt Lincoln Russell",
'AuthorEmail' => '',
'AuthorUrl' => ''
);
Not sure if the author is still correct, and I removed the email address and link.