annotate media/js/tiny_mce/plugins/preview/preview.html @ 235:d302c498560e

Fix problem when deleting multiple topics from a forum in bulk. We getting a list of topics from the database, then deleting each topic. But after you delete a topic, the forum.last_post on the remaining non-deleted topics can be stale. This was causing a weird DoesNotExist. Now just get the topics one at a time from the database.
author Brian Neal <bgneal@gmail.com>
date Thu, 26 Aug 2010 04:01:58 +0000
parents a5b4c5ce0658
children
rev   line source
bgneal@45 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
bgneal@45 2 <html xmlns="http://www.w3.org/1999/xhtml">
bgneal@45 3 <head>
bgneal@45 4 <script type="text/javascript" src="../../tiny_mce_popup.js"></script>
bgneal@45 5 <script type="text/javascript" src="jscripts/embed.js"></script>
bgneal@45 6 <script type="text/javascript"><!--
bgneal@45 7 document.write('<base href="' + tinyMCEPopup.getWindowArg("base") + '">');
bgneal@45 8 // -->
bgneal@45 9 </script>
bgneal@45 10 <title>{#preview.preview_desc}</title>
bgneal@45 11 </head>
bgneal@45 12 <body id="content">
bgneal@45 13 <script type="text/javascript">
bgneal@45 14 document.write(tinyMCEPopup.editor.getContent());
bgneal@45 15 </script>
bgneal@45 16 </body>
bgneal@45 17 </html>