Reverse Flash
Paragon
Code:
<?php
// disallow direct access to this file for security reasons
if (!defined ('IN_MYBB')) {
die ('sorry, this file can't be accessed directly');
}
// hooks
$plugins->add_hook ('index_start', 'do_stuff');
// functions
function do_stuff () {
echo 'whoo, my first plugin';
}
// info about the plugin
function mybbplugin_info ()
{
return array (
'name' => 'mybbplugin',
'description' => 'my first plugin',
'website"' => '',
'author' => 'khanfusion',
'authorsite' => '',
'version' => '1.0',
'guid' => '',
'codename' => 'mybbplugin',
'compatibility' => '*'
);
}
function mybbplugin_install () {
}
function mybbplugin_is_installed () {
}
function mybbplugin_uninstall () {
}
function mybbplugin_activate () {
}
function mybbplugin_deactivate () {
}
As seen in the screenshot, the h2 is really small. (usually it's 36px [height] but it's been messed up by the plugin...)
Help?







