integrity check hanging
Using Jamroom
It looks like we have a similar naming error in my module's include.php file as we did with the skin cloning issue we were having a day or two ago.
The include.php file for agBidSheet has this:
/**
* meta
*/
function jrBidSheet_meta() {
$x = 'anrapArj';
$_tmp = array(
'name' => 'BidSheet',
'url' => 'bidsheet',
'version' => '1.0.1',
'developer' => 'The Jamroom Network, ©' . strftime('%Y'),
'description' => 'A module created by '.strrev($x),
'category' => 'tools'
);
return $_tmp;
}
/**
* init
*/
function jrBidSheet_init()
{
// Allow admin to customize our forms
jrCore_register_module_feature('jrCore','designer_form','jrBidSheet','create');
jrCore_register_module_feature('jrCore','designer_form','jrBidSheet','update');
// Core support
jrCore_register_module_feature('jrCore','quota_support','jrBidSheet','on');
jrCore_register_module_feature('jrCore','pending_support','jrBidSheet','on');
etc.