A list of the Joomla bugs I found but did not report, maybe still open

If you use SEF URLs, then simple #fraction links to anchors or tags with ids within the same page (resp. content item) will not work any more. E.g.: <a href=”#footnote5″>[5]</a>.

Using Mambo 4.5.1 Beta 4. If I write “[019]” in my content item, it gets transformed to “[019 >”. At least if this text is contained in an <a> tag. Problem with Mambots?

Mambo 4.5.1 Beta 4 and Konqueror 3.1.0: Javascript Problem when trying to upload 160 KBytes of text in the main part of an content item. No problems with Mozilla with this task. If you must use Konqueror because Mozilla shows image list not correctly, publish the images in the correct order beforehand and use Mozilla to publish the text afterwards.

Mambo 4.5.1 Beta 4 frontend editing: if you are in the tab “Metadata” or “Images” when editing an article in the frontend and then you click “Save”, all data of the article gets lost but the system says “Iten successfully saved” afterwards. If you are in the tab “Content” and click “Save”, everything is fine.

Mambo 4.5.1 Beta 4 frontend enditing: all text in the tab “Metadata” gets not saved. The next time you look at these fields, they are empty again.

Mambo 4.5.1 Beta 4 and the bbcode mambot. Sadly, this mambot is not very “intelligent” yet. It even replaces strings such as “:-)” that appear within href attributes!

Joomla DOCMan bug: Erroneous usage of dmMainFrame::getPath() in dmMainFrame::_setLanguage() This bug makes it impossible to just place a language file in [mambo_dir]/components/com_docman/language/ and have it selected by the default configured Mambo language. Here is my corrected, working version of dmMainFrame::setLanguage() (in file docman.class.php):

function _setLanguage() {
  global $mosConfig_lang;
  // Get the right language if it exists
  if (file_exists($this->getPath('language', $mosConfig_lang))) {
    include_once ($this->getPath('language', $mosConfig_lang));
  } else {
    include_once ($this->getPath('language', 'english'));
  }
}


Posted

in

,

by

Tags:

Comments

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.