In edit/isfdblib.py MakeModAndViewLinks, the line "if item_id and view_script:" appears to let through invalid values of item_id. item_id is invalid if it is the string "0", which (like all non-empty strings in Python) evaluates to true. The line should probably be changed to "if item_id != "0" and view_script:".
Anonymous
edit/isfdblib.py 1.26 committed
Fixed in edit/isfdblib.py 1.28, installed in r2013-61 on 2013-03-12.