Mafia Checked Out Module

Ever had one file you wanted to edit and you knew the person that checked it out had signed off and you knew 2 others where in the middle of editing other content so you didn't want to do a global check in? Mafia Checked Out puts that issue into the grave. With Mafia Checkout now you can check back in 1 article at a time and it even shows you who had it checked out to begin with. When JoomlaMafia.com releases a add on and if its commercial we are only making it commercial to help with server cost. We price things very affordable. $2.50 - $15 per item unless its a big one like Mafia Icons. This is a $2.50 one.

Report

It works but you will notice that Module Checkout will give you a line 34 error.

Change
$db3->setQuery( "UPDATE #__module SET checked_out='0' WHERE id=$_GET[mid]" );

to

$db3->setQuery( "UPDATE #__modules SET checked_out='0' WHERE id=$_GET[mid]" );

and

$db->setQuery( "SELECT title,checked_out,id FROM #__module WHERE checked_out !='0' ORDER BY id DESC", 0, 1000 );

to

$db->setQuery( "SELECT title,checked_out,id FROM #__modules WHERE checked_out !='0' ORDER BY id DESC", 0, 1000 );


---------------------------

Another great thing is that you can take the code and change it to include additional checkout items such as menus and for us contacts.

great program just needs some more attention to the code.