This simple hack for Joomla 1.5 is to change the following two files:
components\com_content\controller.php
components\com_content\models\article.php
For the first comment out some lines around 234:
1 2 3 4 5 6 7 8 |
// if ($access->canPublish) // { // Publishers, admins, etc just get the stock msg $msg = JText::_('Item successfully saved.'); // } // else // { // $msg = $isNew ? JText::_('THANK_SUB') : JText::_('Item successfully saved.'); |
// }
For the second file change a zero to one on line 336:
1 |
$article->state = 1; |