Merge pull request #17 from maartenkling/master

fixing #13037
This commit is contained in:
Timo Stollenwerk 2012-10-26 00:11:37 -07:00
commit 53cf405313
2 changed files with 28 additions and 20 deletions

View File

@ -4,14 +4,22 @@ Changelog
2.2.1 (unreleased)
------------------
- Submit form using other jquery selector so FF and Chrome don't crash
fixes #13037
[maartenkling]
- Remove inline styles, fixes #12399
[maartenkling]
- add fallback border color for i8, fixes #11324
[maartenkling]
- Replace discussionitem_icon.gif with png version.
[timo]
- Fix catalog updates for IObjectMovedEvent
[gaudenz]
- Fix non-functioning user_notification feature
[izak]

View File

@ -120,7 +120,7 @@
**********************************************************************/
$("form#DiscussionSettingsEditForm").bind("submit", function (e) {
$(this).find("input,select").removeAttr('disabled');
$(this).submit();
$("form#DiscussionSettingsEditForm").submit();
});
});