Dont display when a message is updated in the dashboard
Page: 1
How can i stop de has been updated notification from a ppearing in the dashboard when a message is edited?
Ilija Studen
on Jun 10. 2007. 2:23 pm
Open application/controllers/MessageController.class.php and somewhere around like 244 you'll find this:
Remove the line that starts with ApplicationLogs::
That should do the trick. If you wish to do that for other types find their controller (usually [TypeName]Controller.class.php), find edit method and remove a line where new entry is saved to application log.
DB::beginWork(); $message->save(); $message->setTagsFromCSV(array_var($message_data, 'tags')); ApplicationLogs::createLog($message, $message->getProject(), ApplicationLogs::ACTION_EDIT); DB::commit();
Remove the line that starts with ApplicationLogs::
ApplicationLogs::createLog($message, $message->getProject(), ApplicationLogs::ACTION_EDIT);
That should do the trick. If you wish to do that for other types find their controller (usually [TypeName]Controller.class.php), find edit method and remove a line where new entry is saved to application log.
activeCollab team member
Topic is locked. If you have something important to say about issues discussed on this page please write at hi@a51dev.com.



