svnno****@sourc*****
svnno****@sourc*****
2008年 2月 26日 (火) 20:09:15 JST
Revision: 520 http://svn.sourceforge.jp/cgi-bin/viewcvs.cgi?root=slashdotjp&view=rev&rev=520 Author: tach Date: 2008-02-26 20:09:15 +0900 (Tue, 26 Feb 2008) Log Message: ----------- Fix adimin topic select window to change tree/alpabetical (merged from trunk) Modified Paths: -------------- slashjp/branches/2.5.0.192/debian/changelog slashjp/branches/2.5.0.192/plugins/Admin/templates/topic_popup_js;admin;default -------------- next part -------------- Modified: slashjp/branches/2.5.0.192/debian/changelog =================================================================== --- slashjp/branches/2.5.0.192/debian/changelog 2008-02-26 11:03:23 UTC (rev 519) +++ slashjp/branches/2.5.0.192/debian/changelog 2008-02-26 11:09:15 UTC (rev 520) @@ -1,3 +1,9 @@ +slash (2.5.0.192-5) unstable; urgency=low + + * Fix adimin topic select window to change tree/alpabetical + + -- Taku YASUI <tach****@osdn*****> Tue, 26 Feb 2008 20:08:20 +0900 + slash (2.5.0.192-4) unstable; urgency=low * Backported from 2.5.0.194 at plugins/Stats/Stats.pm Modified: slashjp/branches/2.5.0.192/plugins/Admin/templates/topic_popup_js;admin;default =================================================================== --- slashjp/branches/2.5.0.192/plugins/Admin/templates/topic_popup_js;admin;default 2008-02-26 11:03:23 UTC (rev 519) +++ slashjp/branches/2.5.0.192/plugins/Admin/templates/topic_popup_js;admin;default 2008-02-26 11:09:15 UTC (rev 520) @@ -512,7 +512,7 @@ var obj = document.getElementById(name + "-outer"); obj.style.visibility = "hidden"; var objx = document.getElementById(name + "-inner"); - objx.style.display = "none"; + if (objx) { objx.style.display = "none"; } /* clear selection */ if (type == [% name %]_selected_type && [% name %]_selected_id != -1) { [% name %]_toggle_select([% name %]_selected_id, 0, type);