= Description =
I installed the moinmoin_193.If i click on the "Recent Changes" OR "Find page" then i got the following script error window.

{{attachment:scriptError.jpg}}

I am getting this error with IE-8. I tested on Firefox and there is no script error.
== Steps to reproduce ==
 1. Install the 1.9.3 version and click on the recent changes then got script error.

== Example ==
##Add URL that show the bug, screenshot or test wiki markup that fail...
##URL:
##{{attachment:screenshot.png}}
##{{{
##Example wiki markup that fail
##}}}
== Component selection ==
## Where you think is this bug happening ? (general, plugin [plugin name], theme [theme name], ...
 * general

== Details ==
## If you got a traceback, please save the traceback page as html and attach here:
## [[attachment:traceback.html]]
## if the bug is in this wiki, just kill the table and write: This Wiki.
## If a traceback is not available, please fill in the details here:
||'''!MoinMoin Version''' ||193 ||
||'''OS and Version''' ||Windows7 ||
||'''Python Version''' ||2.7 ||
||'''Server Setup''' || ||
||'''Server Details''' ||Apache/2.2.16 (Win32) mod_wsgi/3.3 Python/2.7 mod_auth_sspi/1.0.4 ||
||'''Language you are using the wiki in''' (set in the browser/UserPreferences) ||English ||


== Workaround ==
replace the !RecentChanges_193 with old !RecentChanges_1.8.*
= Discussion =
If I understand this correctly, the error message says you have a long running script and asks if it should continue running the script or stop.  Your workaround was to replace the 1.9.3 /macro/Recent``Changes.py with the 1.8.0 version.  The only change between 1.8.0 and 1.9.3 is this:

{{{#!python
=== (+3,-3) MoinMoin/macro/RecentChanges.py ===
@@ -172,7 +172,7 @@
     last_edits.sort()

     # set max size in days
-    max_days = min(int(request.form.get('max_days', [0])[0]), _DAYS_SELECTION[-1])
+    max_days = min(int(request.values.get('max_days', 0)), _DAYS_SELECTION[-1])
     # default to _MAX_DAYS for users without bookmark
     if not max_days:
         max_days = _MAX_DAYS
@@ -269,7 +269,7 @@
         d['rc_update_bookmark'] = page.link_to(request, _("Set bookmark"), querystr={'action': 'bookmark', 'time': '%d' % version}, rel='nofollow')

     # set max size in days
-    max_days = min(int(request.form.get('max_days', [0])[0]), _DAYS_SELECTION[-1])
+    max_days = min(int(request.values.get('max_days', 0)), _DAYS_SELECTION[-1])
     # default to _MAX_DAYS for useres without bookmark
     if not max_days and not bookmark_usecs:
         max_days = _MAX_DAYS
}}}

I was unable to reproduce the problem on IE8 with Windows/7 with Python 2.6.5 and Apache 2.2.14.  I copied the 1.8.0 version of Recent``Changes.py to 1.9.3 and verified that it does work.  But I cannot understand how your workaround would have any effect on any Javascript functions that would suppress the error.

Suggestions:
 * Copy back the 1.9.3 version of Recent``Changes.py and verify you can reproduce the error.
 * Copy the common.js from http://moinmo.in/MoinMoinBugs/1.9.3IE7ScrollsToLeftUncontrollably to /htdocs/common/js/ and test again.

If you are running your wiki on an intranet, IE8 runs in IE7 compatibility mode by default. Click on Tools, Compatibility View Settings, and note the status of the Display Intranet Sites in Compatibility View checkbox.  Unless you have a application that requires IE7 compatibility mode, you probably want to uncheck the box.

Please report your testing results back here.
  -- RogerHaase <<DateTime(2010-08-12T21:01:01-0700)>>


= Plan =
## This part is for Moin``Moin developers:
 * Priority:
 * Assigned to:
 * Status:

----

## If you are a moin core developer, replace the category to Category* in these cases:
## Category MoinMoinNoBug - if this is not a bug.
## Category MoinMoinBugConfirmed - if you can confirm the bug on current code.
## Category MoinMoinBugFixed - after the bug is fixed in current code.
CategoryMoinMoinBug