Showing with 356 additions and 94 deletions.
  1. +2 −5 assets/contao/js/core-uncompressed.js
  2. +1 −1 assets/contao/js/core.js
  3. +8 −8 contao/install.php
  4. +2 −2 contao/password.php
  5. +1 −1 system/config/constants.php
  6. +32 −0 system/docs/CHANGELOG.md
  7. +9 −1 system/helper/functions.php
  8. +1 −1 system/helper/mbstring.php
  9. +24 −3 system/modules/calendar/classes/Calendar.php
  10. +1 −1 system/modules/calendar/dca/tl_calendar.php
  11. +2 −2 system/modules/calendar/dca/tl_calendar_events.php
  12. +1 −1 system/modules/calendar/dca/tl_calendar_feed.php
  13. +2 −2 system/modules/calendar/models/CalendarFeedModel.php
  14. +2 −2 system/modules/core/classes/FileUpload.php
  15. +1 −1 system/modules/core/classes/Frontend.php
  16. +14 −4 system/modules/core/classes/Theme.php
  17. +26 −6 system/modules/core/dca/tl_settings.php
  18. +12 −1 system/modules/core/dca/tl_templates.php
  19. +2 −2 system/modules/core/drivers/DC_Folder.php
  20. +20 −11 system/modules/core/library/Contao/Controller.php
  21. +5 −5 system/modules/core/library/Contao/Dbafs.php
  22. +34 −12 system/modules/core/library/Contao/Environment.php
  23. +5 −5 system/modules/core/library/Contao/Files.php
  24. +61 −0 system/modules/core/library/Contao/Input.php
  25. +1 −1 system/modules/core/library/Contao/Pagination.php
  26. +5 −5 system/modules/core/library/Contao/User.php
  27. +47 −0 system/modules/core/library/Contao/Validator.php
  28. +0 −2 system/modules/core/modules/ModuleSearch.php
  29. +1 −1 system/modules/core/widgets/MetaWizard.php
  30. +1 −1 system/modules/listing/modules/ModuleListing.php
  31. +24 −3 system/modules/news/classes/News.php
  32. +2 −2 system/modules/news/dca/tl_news.php
  33. +1 −1 system/modules/news/dca/tl_news_archive.php
  34. +1 −1 system/modules/news/dca/tl_news_feed.php
  35. +5 −0 system/modules/repository/classes/RepositorySettings.php
7 changes: 2 additions & 5 deletions assets/contao/js/core-uncompressed.js
Original file line number Diff line number Diff line change
Expand Up @@ -544,10 +544,10 @@ var AjaxRequest =
// Send request
if (publish) {
image.src = image.src.replace('invisible.gif', 'visible.gif');
new Request.Contao({'url':window.location.href, 'followRedirects':false}).get({'tid':id, 'state':1});
new Request.Contao({'url':window.location.href, 'followRedirects':false}).get({'tid':id, 'state':1, 'rt':Contao.request_token});
} else {
image.src = image.src.replace('visible.gif', 'invisible.gif');
new Request.Contao({'url':window.location.href, 'followRedirects':false}).get({'tid':id, 'state':0});
new Request.Contao({'url':window.location.href, 'followRedirects':false}).get({'tid':id, 'state':0, 'rt':Contao.request_token});
}

return false;
Expand Down Expand Up @@ -1951,9 +1951,6 @@ var Backend =
li.destroy();
opt.fireEvent('liszt:updated');
}

// Remove the tool tip of the delete button
$$('div.tip-wrap').destroy();
},

/**
Expand Down
Loading