How to remove already enqueued messages in joomla 2.5? Thanks in advance!
I tried
$jAp = JFactory::getApplication();
$messagesexist = $jAp->getMessageQueue();
But the above code is showing all the enqued messages. From that I want to remove particular message.
$message = JText::_('LANG_STRING');
followed by$this->setRedirect($url, $message, $messageType);
- Lodder