<?xml version="1.0" encoding="utf-8" ?>
<?xml-stylesheet type="text/xsl" href="RSS_xslt_style.asp" version="1.0" ?>
<rss version="2.0" xmlns:WebWizForums="https://syndication.webwiz.net/rss_namespace/">
 <channel>
  <title>Web Wiz Support and Community Forums : minor bug found</title>
  <link>https://forums.webwiz.net/</link>
  <description><![CDATA[This is an XML content feed of; Web Wiz Support and Community Forums : Web Wiz Forums : minor bug found]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Tue, 07 Apr 2026 09:56:22 +0000</pubDate>
  <lastBuildDate>Thu, 12 Jul 2007 14:58:40 +0000</lastBuildDate>
  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
  <generator>Web Wiz Forums 12.08</generator>
  <ttl>360</ttl>
  <WebWizForums:feedURL>https://forums.webwiz.net/RSS_post_feed.asp?TID=23725</WebWizForums:feedURL>
  <image>
   <title><![CDATA[Web Wiz Support and Community Forums]]></title>
   <url>https://forums.webwiz.net/forum_images/web_wiz_forums.png</url>
   <link>https://forums.webwiz.net/</link>
  </image>
  <item>
   <title><![CDATA[minor bug found : thanks Borg!  JohnnyJ ]]></title>
   <link>https://forums.webwiz.net/minor-bug-found_topic23725_post124575.html#124575</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=26223">johnnyjcorp</a><br /><strong>Subject:</strong> 23725<br /><strong>Posted:</strong> 12&nbsp;July&nbsp;2007 at 2:58pm<br /><br />thanks Borg!<DIV>&nbsp;</DIV><DIV>JohnnyJ</DIV>]]>
   </description>
   <pubDate>Thu, 12 Jul 2007 14:58:40 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/minor-bug-found_topic23725_post124575.html#124575</guid>
  </item> 
  <item>
   <title><![CDATA[minor bug found : Yes looks like you are correct...]]></title>
   <link>https://forums.webwiz.net/minor-bug-found_topic23725_post124544.html#124544</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=1">WebWiz-Bruce</a><br /><strong>Subject:</strong> 23725<br /><strong>Posted:</strong> 12&nbsp;July&nbsp;2007 at 7:34am<br /><br />Yes looks like you are correct the problem has been fixed for the next version.]]>
   </description>
   <pubDate>Thu, 12 Jul 2007 07:34:28 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/minor-bug-found_topic23725_post124544.html#124544</guid>
  </item> 
  <item>
   <title><![CDATA[minor bug found : I found the problem. It seems...]]></title>
   <link>https://forums.webwiz.net/minor-bug-found_topic23725_post124537.html#124537</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=26223">johnnyjcorp</a><br /><strong>Subject:</strong> 23725<br /><strong>Posted:</strong> 11&nbsp;July&nbsp;2007 at 10:11pm<br /><br />I found the problem.&nbsp; It seems that the problem doesn't affect all browsers since it's an html syntax problem.&nbsp; I'm using IE 7.0.<DIV>&nbsp;</DIV><DIV>file: includes/message_form_inc.asp</DIV><DIV>&nbsp;</DIV><DIV>=== start original code ===</DIV><DIV>&nbsp;</DIV><DIV>&nbsp;If (blnAdmin OR blnPriority) AND (strMode = "new" or strMode="editTopic" OR strMode = "editPoll" OR strMode = "poll" or strMode = "editPoll") Then</DIV><DIV>&nbsp;&nbsp;Response.Write("&amp;nbsp;" &amp; strTxtPriority &amp; ":" &amp; _<BR>&nbsp;&nbsp;vbCrLf &amp; "&nbsp;&nbsp;&nbsp; &lt;select name=""priority"" id=""priority""&gt;" &amp; _<BR>&nbsp;&nbsp;vbCrLf &amp; "&nbsp;&nbsp;&nbsp;&nbsp; &lt;option value=""0""")<BR>&nbsp;&nbsp;If intTopicPriority = 0 Then Response.Write(" selected")<BR>&nbsp;&nbsp;Response.Write("&gt;" &amp; strTxtNormal &amp; "&lt;/option&gt;" &amp; _<BR>&nbsp;&nbsp;vbCrLf &amp; "&nbsp;&nbsp;&nbsp;&nbsp; &lt;option value=""1""")<BR>&nbsp;&nbsp;If intTopicPriority = 1 Then Response.Write(" selected")<BR>&nbsp;&nbsp;Response.Write("&gt;" &amp; strTxtPinnedTopic &amp; "&lt;/option&gt;")</DIV><DIV>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;'If this is the forum admin or moderator let them post an annoucment to this forum<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;If blnAdmin = True OR blnModerator Then</DIV><DIV>&nbsp;&nbsp;&nbsp;Response.Write(vbCrLf &amp; "&nbsp;&nbsp;&nbsp;&nbsp; &lt;option value=""2""")<BR>&nbsp;&nbsp;&nbsp;If intTopicPriority = 2 Then Response.Write(" selected")<BR>&nbsp;&nbsp;&nbsp;Response.Write("""&gt;" &amp; strTopThisForum &amp; "&lt;/option&gt;")</DIV><DIV>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;End If</DIV><DIV>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;'If this is the forum admin let them post a priority post to all forums<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;If blnAdmin = True Then</DIV><DIV>&nbsp;&nbsp;&nbsp;Response.Write(vbCrLf &amp; "&nbsp;&nbsp;&nbsp;&nbsp; &lt;option value=""3""")<BR>&nbsp;&nbsp;&nbsp;If intTopicPriority = 3 Then Response.Write(" selected")<BR>&nbsp;&nbsp;&nbsp;Response.Write("""&gt;" &amp; strTxtTopAllForums &amp; "&lt;/option&gt;")</DIV><DIV>&nbsp;&nbsp;End If</DIV><DIV>&nbsp;</DIV><DIV>=== end original code ===</DIV><DIV>&nbsp;</DIV><DIV>The problem is an extra pair of double quotes that is being produced.</DIV><DIV>&nbsp;</DIV><DIV>By changing the BOTH of two lines that read: </DIV><DIV>&nbsp;</DIV><DIV>Response.Write("""&gt;" &amp; strTxtTopAllForums &amp; "&lt;/option&gt;")</DIV><DIV>&nbsp;</DIV><DIV>to:</DIV><DIV>&nbsp;</DIV><DIV><DIV>Response.Write("&gt;" &amp; strTxtTopAllForums &amp; "&lt;/option&gt;")</DIV><DIV>&nbsp;</DIV><DIV>The problem has been resolved.&nbsp; Can you acknowledge that your source looks like that as well?</DIV><DIV>&nbsp;</DIV><DIV>If you view source on the Edit post page and search for "annoucment" you should see the extra double quotes.</DIV><DIV>&nbsp;</DIV><DIV>Thanks!</DIV><DIV>&nbsp;</DIV><DIV>JohnnyJ</DIV></DIV>]]>
   </description>
   <pubDate>Wed, 11 Jul 2007 22:11:29 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/minor-bug-found_topic23725_post124537.html#124537</guid>
  </item> 
  <item>
   <title><![CDATA[minor bug found : This shouldn&amp;#039;t happen and...]]></title>
   <link>https://forums.webwiz.net/minor-bug-found_topic23725_post124532.html#124532</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=1">WebWiz-Bruce</a><br /><strong>Subject:</strong> 23725<br /><strong>Posted:</strong> 11&nbsp;July&nbsp;2007 at 9:17pm<br /><br />This shouldn't happen and can not replicate this problkem, so sounds like you have a corrupted file or you haven't upgraded the forum correctly.<br><br>Download the latest version and install it and see if that solves the issue.<br>]]>
   </description>
   <pubDate>Wed, 11 Jul 2007 21:17:04 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/minor-bug-found_topic23725_post124532.html#124532</guid>
  </item> 
  <item>
   <title><![CDATA[minor bug found : Hey Borg, Thanks for your response....]]></title>
   <link>https://forums.webwiz.net/minor-bug-found_topic23725_post124531.html#124531</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=26223">johnnyjcorp</a><br /><strong>Subject:</strong> 23725<br /><strong>Posted:</strong> 11&nbsp;July&nbsp;2007 at 8:26pm<br /><br /><P>Hey Borg,</P><P>Thanks for your response.&nbsp; I'm using the latest version.&nbsp; The last few upgrades I have done manually file by file though instead of full upgrades.</P><P>Steps to replicate:</P><P>1) Create a new post as an Annoucment (this forum).<BR>2) Then when viewing the post, click the "Edit" button below the post.</P><DIV>Notice that it will Say "Sticky Topic: &#091;Normal Topic&#093;" instead of "Annoucement (this forum)"&nbsp; So if you forget to reselect it as an annoucment, it resaves as a normal topic, and you may not even realize it at first.</DIV><DIV>&nbsp;</DIV><DIV>JohnnyJ</DIV>]]>
   </description>
   <pubDate>Wed, 11 Jul 2007 20:26:58 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/minor-bug-found_topic23725_post124531.html#124531</guid>
  </item> 
  <item>
   <title><![CDATA[minor bug found : Not managed to replicate this...]]></title>
   <link>https://forums.webwiz.net/minor-bug-found_topic23725_post124530.html#124530</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=1">WebWiz-Bruce</a><br /><strong>Subject:</strong> 23725<br /><strong>Posted:</strong> 11&nbsp;July&nbsp;2007 at 8:16pm<br /><br />Not managed to replicate this bug as it should keep this selected.<br><br>Could you please post the version you are using and the steps required to replicate this?<br>]]>
   </description>
   <pubDate>Wed, 11 Jul 2007 20:16:42 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/minor-bug-found_topic23725_post124530.html#124530</guid>
  </item> 
  <item>
   <title><![CDATA[minor bug found :  When you update a post that...]]></title>
   <link>https://forums.webwiz.net/minor-bug-found_topic23725_post124529.html#124529</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=26223">johnnyjcorp</a><br /><strong>Subject:</strong> 23725<br /><strong>Posted:</strong> 11&nbsp;July&nbsp;2007 at 8:03pm<br /><br /><DIV>&nbsp;</DIV><DIV>When you update a post that is an announcement. Accouncement is not preselected and so if you don't reslect it, it looses it annoucement status.</DIV><DIV>&nbsp;</DIV><DIV>Sometimes you are just updating something minor after you post an annoucment, and if you forget to reselect the type as an annoucement, it goes back to the default selected which is a normal post.&nbsp; minor, but annoying.</DIV><DIV>&nbsp;</DIV><DIV>JohnnyJ</DIV>]]>
   </description>
   <pubDate>Wed, 11 Jul 2007 20:03:17 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/minor-bug-found_topic23725_post124529.html#124529</guid>
  </item> 
 </channel>
</rss>