<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Learning the World &#187; bugs</title>
	<atom:link href="http://knewquist.edublogs.org/tag/bugs/feed/" rel="self" type="application/rss+xml" />
	<link>http://knewquist.edublogs.org</link>
	<description>An education tech blog by Ken Newquist</description>
	<lastBuildDate>Sun, 04 Oct 2009 16:12:54 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Problems with WordPress MU 2.8.4a and PPSX files</title>
		<link>http://knewquist.edublogs.org/2009/09/22/wordpress-mu-2-8-4a-and-ppsx-files/</link>
		<comments>http://knewquist.edublogs.org/2009/09/22/wordpress-mu-2-8-4a-and-ppsx-files/#comments</comments>
		<pubDate>Tue, 22 Sep 2009 17:47:29 +0000</pubDate>
		<dc:creator>Kenneth Newquist</dc:creator>
				<category><![CDATA[Web Applications]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[bugs]]></category>
		<category><![CDATA[wordpressmu]]></category>

		<guid isPermaLink="false">http://knewquist.edublogs.org/?p=192</guid>
		<description><![CDATA[WordPress MU 2.8.4a refuses to upload .ppsx (PowerPoint Show files for PowerPoint 2007/2008) because the extension hasn&#8217;t been defined in the functions &#8220;wp_check_filetype&#8221; and &#8220;wp_ext2type&#8221; in /wp-content/functions.php
Not having ppsx defined here causes WordPress? MU to throw the warning &#8220;File type does not meet security guidelines. Try another.&#8221; when uploading the file (even when the ppsx [...]]]></description>
			<content:encoded><![CDATA[<p>WordPress MU 2.8.4a refuses to upload .ppsx (PowerPoint Show files for PowerPoint 2007/2008) because the extension hasn&#8217;t been defined in the functions &#8220;wp_check_filetype&#8221; and &#8220;wp_ext2type&#8221; in /wp-content/functions.php</p>
<p>Not having ppsx defined here causes <a>WordPress?</a> MU to throw the warning &#8220;File type does not meet security guidelines. Try another.&#8221; when uploading the file (even when the ppsx file type itself is blessed in WPMU&#8217;s admin options).</p>
<p>I&#8217;ve reported the bug to WordPress MU Track here:</p>
<ul>
<li><a href="http://trac.mu.wordpress.org/ticket/1118">#1118: PPSX not defined as valid file in functions.php</a></li>
</ul>
<p><strong>Update</strong></p>
<p>The fix isn&#8217;t quite so straightforward as just adding .ppsx to the list of valid PowerPoint extensions, because technically PowerPoint Shows for 2007 have their own MIME type:</p>
<ul>
<li>application/vnd.openxmlformats-officedocument.presentationml.slideshow</li>
</ul>
<p>As does PowerPoint 2007:</p>
<ul>
<li>application/vnd.openxmlformats-officedocument.presentationml.presentation</li>
</ul>
<p>Specifying the wrong MIME type for PowerPoint Show files caused WordPress to add a .ppt extension to the file, which played havoc with subsequent downloads. The fix was to specify the MIME type in wp_check_filetype:</p>
<ul>
<li>&#8216;ppsx&#8217; =&gt; &#8216;application/vnd.openxmlformats-officedocument.presentationml.slideshow&#8217;</li>
</ul>
<p>My bug report at WordPress MU was closed because this is technically something that needs to be changed in core WordPress; I&#8217;ll be reporting it there shortly.</p>
]]></content:encoded>
			<wfw:commentRss>http://knewquist.edublogs.org/2009/09/22/wordpress-mu-2-8-4a-and-ppsx-files/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bugs in WordPress MU 2.8.1</title>
		<link>http://knewquist.edublogs.org/2009/07/14/bugs-in-wordpress-mu-281/</link>
		<comments>http://knewquist.edublogs.org/2009/07/14/bugs-in-wordpress-mu-281/#comments</comments>
		<pubDate>Tue, 14 Jul 2009 16:12:00 +0000</pubDate>
		<dc:creator>Kenneth Newquist</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Web Applications]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[bugs]]></category>
		<category><![CDATA[WordPress Mu]]></category>

		<guid isPermaLink="false">http://knewquist.edublogs.org/?p=191</guid>
		<description><![CDATA[WordPress MU 2.8.1 was just released, and I came across a few bugs while kicking the tires on my MU development site:

#1037 After upgrade, upgrade banner doesn&#8217;t disappear (fixed)
#1048 WPMU 2.8.1 improperly escaping titles of newly created blogs
#1049 Editing Blog Settings as Admin fails (fixed)

#1049 was fixed within four minutes of me posting the ticket, [...]]]></description>
			<content:encoded><![CDATA[<p>WordPress MU 2.8.1 was just released, and I came across a few bugs while kicking the tires on my MU development site:</p>
<ul>
<li><a href="http://trac.mu.wordpress.org/ticket/1037">#1037 After upgrade, upgrade banner doesn&#8217;t disappear</a> (fixed)</li>
<li><a href="http://trac.mu.wordpress.org/ticket/1048">#1048 WPMU 2.8.1 improperly escaping titles of newly created blogs</a></li>
<li><a href="http://trac.mu.wordpress.org/ticket/1049">#1049 Editing Blog Settings as Admin fails</a> (fixed)</li>
</ul>
<p>#1049 was fixed within four minutes of me posting the ticket, which is pretty darn cool.</p>
<p>I also encountered an issue with the <a href="http://www.kerrins.co.uk/blog/admin-ssl/">Admin-SSL plugin</a> and 2.8.1 that sets up an infinite rerewrite of the blog delete URL; I haven&#8217;t had a chance to track it down yet, but the author is working on an update of the plugin to get it working properly with 2.8.</p>
]]></content:encoded>
			<wfw:commentRss>http://knewquist.edublogs.org/2009/07/14/bugs-in-wordpress-mu-281/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MDL-10641 Wiki binary files option broken</title>
		<link>http://knewquist.edublogs.org/2009/03/25/mdl-10641-wiki-binary-files-option-broken/</link>
		<comments>http://knewquist.edublogs.org/2009/03/25/mdl-10641-wiki-binary-files-option-broken/#comments</comments>
		<pubDate>Wed, 25 Mar 2009 13:00:04 +0000</pubDate>
		<dc:creator>Kenneth Newquist</dc:creator>
				<category><![CDATA[Moodle]]></category>
		<category><![CDATA[Web Applications]]></category>
		<category><![CDATA[bugs]]></category>
		<category><![CDATA[moodle19]]></category>
		<category><![CDATA[wiki]]></category>

		<guid isPermaLink="false">http://knewquist.edublogs.org/?p=188</guid>
		<description><![CDATA[Our Moodle Wikis were working just fine (well, they were working about as well as the Moodle wiki ever does) until 1.9.4. That&#8217;s when they broke; you could select and upload a file (e.g. a photo), but the screen would go white (indicating a PHP error) and your file wouldn&#8217;t make it to the wiki. [...]]]></description>
			<content:encoded><![CDATA[<p>Our Moodle Wikis were working just fine (well, they were working about as well as the Moodle wiki ever does) until 1.9.4. That&#8217;s when they broke; you could select and upload a file (e.g. a photo), but the screen would go white (indicating a PHP error) and your file wouldn&#8217;t make it to the wiki. As we have a number of wikis that upload photos, this was a problem.</p>
<p>The issue appears to be a change in the default settings for the wiki. Making the wiki configuration tweaks described in this Tracker report fixed the problem:</p>
<ul>
<li><a href="http://tracker.moodle.org/browse/MDL-10641">MDL-10641 Wiki binary files option broken</a></li>
</ul>
<p> </p>
<p> </p>
]]></content:encoded>
			<wfw:commentRss>http://knewquist.edublogs.org/2009/03/25/mdl-10641-wiki-binary-files-option-broken/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Working through the Moodle 1.9.4 security report</title>
		<link>http://knewquist.edublogs.org/2009/03/23/working-through-the-moodle-194-security-report/</link>
		<comments>http://knewquist.edublogs.org/2009/03/23/working-through-the-moodle-194-security-report/#comments</comments>
		<pubDate>Mon, 23 Mar 2009 21:20:10 +0000</pubDate>
		<dc:creator>Kenneth Newquist</dc:creator>
				<category><![CDATA[Moodle]]></category>
		<category><![CDATA[Web Applications]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[bugs]]></category>
		<category><![CDATA[feedback]]></category>
		<category><![CDATA[moodle19]]></category>
		<category><![CDATA[security]]></category>

		<guid isPermaLink="false">http://knewquist.edublogs.org/?p=172</guid>
		<description><![CDATA[In 1.9.4, Moodle introduces a new security report tool which compares your Moodle roles against different security risks. My colleagues and I just spent the afternoon puzzling through the flags that 1.9.4+ raised in our test Moodle install. Unfortunately, &#8220;puzzling&#8221; is the optimum word here: we spent a big chunk of time just trying to [...]]]></description>
			<content:encoded><![CDATA[<p>In 1.9.4, Moodle introduces a new security report tool which compares your Moodle roles against different security risks. My colleagues and I just spent the afternoon puzzling through the flags that 1.9.4+ raised in our test Moodle install. Unfortunately, &#8220;puzzling&#8221; is the optimum word here: we spent a big chunk of time just trying to understand what the report was trying to tell us. Here&#8217;s what I learned.</p>
<p>To start, you need to understand how Moodle tolerates risks based on roles (<a href="http://docs.moodle.org/en/Risks">defined under &#8220;Risks&#8221; in the Moodle Docs wiki.</a>):</p>
<ul>
<li>Guest &#8211; only capabilities without any risks are allowed</li>
<li> Student &#8211; certain capabilities with spam risks are allowed</li>
<li> Teacher &#8211; certain capabilities with XSS and privacy risks are allowed</li>
<li> Administrator &#8211; all capabilities are allowed</li>
</ul>
<p>This is important because any custom roles you&#8217;ve created are evaluated based on the legacy role that spawned them. So if you start with a student role, and give it some more advanced teacher-like options that allow XSS capabilities, then Moodle will set a critical warning flag because its exceeded the capabilities normally associated with a student.</p>
<p>I need to doublecheck this, but I think that if you change the legacy role associated with the custom role in question to &#8220;teacher&#8221;, then your custom capabilities will remain the same, but the report will run against the more permissive teacher role. That said, you may not want to get rid of the warnings (since it is helpful to know what a &#8220;super student&#8221; role could get themselves into) but at least this write-up should help you understand them.</p>
<p>I&#8217;d love to see Moodle create a more user-friendly report that says something like:</p>
<ul>
<li>&#8220;Your role &#8216;Teacher Assistant&#8217; is based on the legacy role &#8216;Student&#8217;. By default, students are not allowed to have capabilities that permit Cross Site Scripting (XSS), but your custom role allows the following XSS capabilities&#8221; &#8212; I&#8217;d then include a list of the problem capabilities.</li>
</ul>
<p>You can contribute to improving the Security Report by reading/commenting on this tracker item:</p>
<ul>
<li><a href="http://tracker.moodle.org/browse/MDL-18078">MDL-18078: Provide a feedback for the admin in order to explain him/her what to do to fix the security problem rised up by the security report</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://knewquist.edublogs.org/2009/03/23/working-through-the-moodle-194-security-report/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MDL-2307 Special characters left in filenames after unzipping</title>
		<link>http://knewquist.edublogs.org/2009/03/16/mdl-2307-special-characters-left-in-filenames-after-unzipping-2/</link>
		<comments>http://knewquist.edublogs.org/2009/03/16/mdl-2307-special-characters-left-in-filenames-after-unzipping-2/#comments</comments>
		<pubDate>Mon, 16 Mar 2009 13:41:20 +0000</pubDate>
		<dc:creator>Kenneth Newquist</dc:creator>
				<category><![CDATA[Moodle]]></category>
		<category><![CDATA[Web Applications]]></category>
		<category><![CDATA[bugs]]></category>
		<category><![CDATA[moodle19]]></category>

		<guid isPermaLink="false">http://knewquist.edublogs.org/?p=161</guid>
		<description><![CDATA[Moodle has a nasty habit of leaving specail characters in file names after you unzip an archive. It will strips these characters (like apostrophies) from a file when that file is uploaded individually, but if you upload an archive, that process doesn&#8217;t happen.
The problem comes when you try and delete that file &#8212; Moodle&#8217;s scripts [...]]]></description>
			<content:encoded><![CDATA[<p>Moodle has a nasty habit of leaving specail characters in file names after you unzip an archive. It will strips these characters (like apostrophies) from a file when that file is uploaded individually, but if you upload an archive, that process doesn&#8217;t happen.</p>
<p>The problem comes when you try and delete that file &#8212; Moodle&#8217;s scripts can&#8217;t handle the special character, and refuse to allow you to move, delete or otherwise modify the file. Fortunately, a fix is coming in Moodle 1.9.5 thanks to the work of Charles Fulton of Kalamazoo College at Hack/Doc Fest III at Reed College in January 2009.</p>
<p>You can read about it in tracker here:</p>
<ul>
<li><a href="http://tracker.moodle.org/browse/MDL-2307">MDL-237 Special characters left in filenames after unzipping</a></li>
</ul>
<p>A patch is available via tracker. A fix will be available in Moodle 1.9.5.</p>
]]></content:encoded>
			<wfw:commentRss>http://knewquist.edublogs.org/2009/03/16/mdl-2307-special-characters-left-in-filenames-after-unzipping-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Moodle Bugs Squashed: MDL-8848, MDL-15926</title>
		<link>http://knewquist.edublogs.org/2009/02/27/moodle-bugs-squashed-mdl-8848-mdl-15926/</link>
		<comments>http://knewquist.edublogs.org/2009/02/27/moodle-bugs-squashed-mdl-8848-mdl-15926/#comments</comments>
		<pubDate>Fri, 27 Feb 2009 10:24:53 +0000</pubDate>
		<dc:creator>Kenneth Newquist</dc:creator>
				<category><![CDATA[Moodle]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Web Applications]]></category>
		<category><![CDATA[bugs]]></category>
		<category><![CDATA[fixes]]></category>
		<category><![CDATA[moodle19]]></category>

		<guid isPermaLink="false">http://knewquist.edublogs.org/?p=176</guid>
		<description><![CDATA[Two new bugs on my list have officially been squashed by the the Moodle core team:

MDL-15926: WHen clicking on help for scales in forums, ALL the scales are shown, instead of just one (fixed Moodle 1.9.2, verifiedin 1.9.4+)
Summaries don&#8217;t get imported from the source course to the destination course (fixed in Moodle 1.9.5, but available [...]]]></description>
			<content:encoded><![CDATA[<p>Two new bugs on my list have officially been squashed by the the Moodle core team:</p>
<ul>
<li><a href="http://tracker.moodle.org/browse/MDL-15926">MDL-15926: WHen clicking on help for scales in forums, ALL the scales are shown, instead of just one</a> (fixed Moodle 1.9.2, verifiedin 1.9.4+)</li>
<li><a href="http://tracker.moodle.org/browse/MDL-8848">Summaries don&#8217;t get imported from the source course to the destination course</a> (fixed in Moodle 1.9.5, but available in the weekly 1.9.4+ builds)</li>
</ul>
<p>The summaries bug has been kicking around for a long time, and is something we worked on at Hack/Doc Fest II at Kenyon College in June 2008, so it&#8217;s nice to see it finally make its way into core.</p>
]]></content:encoded>
			<wfw:commentRss>http://knewquist.edublogs.org/2009/02/27/moodle-bugs-squashed-mdl-8848-mdl-15926/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MDL-7946: Use simplepie instead of magpie for rss parsing</title>
		<link>http://knewquist.edublogs.org/2009/02/25/mdl-7946-use-simplepie-instead-of-magpie-for-rss-parsing/</link>
		<comments>http://knewquist.edublogs.org/2009/02/25/mdl-7946-use-simplepie-instead-of-magpie-for-rss-parsing/#comments</comments>
		<pubDate>Wed, 25 Feb 2009 09:53:20 +0000</pubDate>
		<dc:creator>Kenneth Newquist</dc:creator>
				<category><![CDATA[Moodle]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Web Applications]]></category>
		<category><![CDATA[bugs]]></category>
		<category><![CDATA[hacks]]></category>
		<category><![CDATA[moodle19]]></category>

		<guid isPermaLink="false">http://knewquist.edublogs.org/?p=173</guid>
		<description><![CDATA[By default, Moodle uses Magpie RSS to parse its RSS feeds. Unfortunately Magpie tends to be buggy, and hasn&#8217;t been updated since 2005. At Hack/Doc Fest II at Kenyon College we put together a patch that swaps out Magpie RSS for the much more current SImplePie RSS (hat tip Charles Fulton, Kalamazoo College, who did most [...]]]></description>
			<content:encoded><![CDATA[<p>By default, Moodle uses <a href="http://magpiephp.com">Magpie RSS</a> to parse its RSS feeds. Unfortunately Magpie tends to be buggy, and hasn&#8217;t been updated since 2005. At Hack/Doc Fest II at Kenyon College we put together a patch that swaps out Magpie RSS for the much more current <a href="http://simplepie.org/">SImplePie RSS</a> (hat tip Charles Fulton, Kalamazoo College, who did most of the patching).</p>
<p>Details on how to swap out Magpie for SImplePie can be found in Moodle Tracker:</p>
<ul>
<li><a href="http://tracker.moodle.org/browse/MDL-7946">MDL-7946: Use simplepie instead of magpie for rss parsing</a></li>
</ul>
<p>This seems like a no brainer swap to me, but the tracker item could still use some vote love. The tracker doesn&#8217;t mention it, but this problem still affects Moodle 1.9.4.</p>
]]></content:encoded>
			<wfw:commentRss>http://knewquist.edublogs.org/2009/02/25/mdl-7946-use-simplepie-instead-of-magpie-for-rss-parsing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MDL-2307 Special characters left in filenames after unzipping</title>
		<link>http://knewquist.edublogs.org/2009/01/14/mdl-2307-special-characters-left-in-filenames-after-unzipping/</link>
		<comments>http://knewquist.edublogs.org/2009/01/14/mdl-2307-special-characters-left-in-filenames-after-unzipping/#comments</comments>
		<pubDate>Wed, 14 Jan 2009 20:43:50 +0000</pubDate>
		<dc:creator>Kenneth Newquist</dc:creator>
				<category><![CDATA[Moodle]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Web Applications]]></category>
		<category><![CDATA[bugs]]></category>
		<category><![CDATA[moodle19]]></category>

		<guid isPermaLink="false">http://knewquist.edublogs.org/?p=162</guid>
		<description><![CDATA[If you unzip a folder containing files with special characters, those files become uneditable and unmoveable via the web browser; the only way to get rid of them is through the command line. This is because Moodle is not escaping the file names when they are created (as it does with single file uploads); instead [...]]]></description>
			<content:encoded><![CDATA[<p>If you unzip a folder containing files with special characters, those files become uneditable and unmoveable via the web browser; the only way to get rid of them is through the command line. This is because Moodle is not escaping the file names when they are created (as it does with single file uploads); instead of replacing the special characters with placeholders, the files get created with the bad characters.</p>
<p>A full rundown and a patch is available in Google tracker; hat tip to Charles Fulton for taking the time to debug this.</p>
<p><a href="http://tracker.moodle.org/browse/MDL-2307">http://tracker.moodle.org/browse/MDL-2307</a></p>
]]></content:encoded>
			<wfw:commentRss>http://knewquist.edublogs.org/2009/01/14/mdl-2307-special-characters-left-in-filenames-after-unzipping/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Custom scales displaying as site-wide scales when creating Grade Items</title>
		<link>http://knewquist.edublogs.org/2008/12/02/custom-scales-displaying-as-site-wide-scales-when-creating-grade-items/</link>
		<comments>http://knewquist.edublogs.org/2008/12/02/custom-scales-displaying-as-site-wide-scales-when-creating-grade-items/#comments</comments>
		<pubDate>Tue, 02 Dec 2008 15:38:28 +0000</pubDate>
		<dc:creator>Kenneth Newquist</dc:creator>
				<category><![CDATA[Moodle]]></category>
		<category><![CDATA[Web Applications]]></category>
		<category><![CDATA[bugs]]></category>
		<category><![CDATA[moodle19]]></category>

		<guid isPermaLink="false">http://knewquist.edublogs.org/?p=114</guid>
		<description><![CDATA[By default, individual course scales should not be accessible to other users on the site unless they&#8217;ve been designated a site-wide &#8220;standard&#8221; scale, which is something only admins can do.
However, we&#8217;ve discovered that if you create a Grade Item (via Grades &#62; Choose an Action &#62; Categories &#38; Items &#62; Add Grade Item) and click [...]]]></description>
			<content:encoded><![CDATA[<p>By default, individual course scales should not be accessible to other users on the site unless they&#8217;ve been designated a site-wide &#8220;standard&#8221; scale, which is something only admins can do.</p>
<p>However, we&#8217;ve discovered that if you create a Grade Item (via Grades &gt; Choose an Action &gt; Categories &amp; Items &gt; Add Grade Item) and click on the &#8220;Scale&#8221; drop down menu, you see all the custom scales available on the site.</p>
<ul>
<li>Tracker: <a href="http://tracker.moodle.org/browse/MDL-16431">http://tracker.moodle.org/browse/MDL-16431</a></li>
</ul>
<p><strong>Update 12/2/2008</strong></p>
<p>It turns this is a duplicate of an existing bug, which will be fixed in Moodle 1.9.4:</p>
<ul>
<li>Tracker: <a href="http://tracker.moodle.org/browse/MDL-15926">http://tracker.moodle.org/browse/MDL-15926</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://knewquist.edublogs.org/2008/12/02/custom-scales-displaying-as-site-wide-scales-when-creating-grade-items/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MDL-17237: Can&#8217;t edit a wiki with a # (hash, number sign, pound sign) in it&#8217;s name.</title>
		<link>http://knewquist.edublogs.org/2008/11/18/mdl-17237-cant-edit-a-wiki-with-a-hash-number-sign-pound-sign-in-its-name/</link>
		<comments>http://knewquist.edublogs.org/2008/11/18/mdl-17237-cant-edit-a-wiki-with-a-hash-number-sign-pound-sign-in-its-name/#comments</comments>
		<pubDate>Tue, 18 Nov 2008 17:29:55 +0000</pubDate>
		<dc:creator>Kenneth Newquist</dc:creator>
				<category><![CDATA[Moodle]]></category>
		<category><![CDATA[Web Applications]]></category>
		<category><![CDATA[bugs]]></category>
		<category><![CDATA[moodle19]]></category>

		<guid isPermaLink="false">http://knewquist.edublogs.org/?p=152</guid>
		<description><![CDATA[This bug drove me (and the instructional technologists I work with) more than a little crazy.
If you create a page in the Moodle wiki that includes a pound (#) sign, and then edit that page, Moodle truncates the page name, forking it and creating a new page.
The original page continues to display, but when you [...]]]></description>
			<content:encoded><![CDATA[<p>This bug drove me (and the instructional technologists I work with) more than a little crazy.</p>
<p>If you create a page in the Moodle wiki that includes a pound (#) sign, and then edit that page, Moodle truncates the page name, forking it and creating a new page.</p>
<p>The original page continues to display, but when you go to edit it, the new page appears. If you then save changes and return to the initial wiki page, the changes do not appear (because they were made to the truncated page, not the original one).</p>
<p>Add groups into the mix, and it gets even more fun. We spent a good amount of time chasing our tails before we realized what the problem was.</p>
<p>This bug is already documented in tracker by Dean Thayer:</p>
<ul>
<li><a href="http://tracker.moodle.org/browse/MDL-17237">MDL-17237: Can&#8217;t edit a wiki with a # (hash, number sign, pound sign) in it&#8217;s name</a></li>
</ul>
<p>Our exact case was a little more involved than this. We had people creating new pages that some how got the original text into the new page, which isn&#8217;t behavior I saw in my tests. Yet if I look at the initial page for these wiki pages, I can see that they started with the same text as the initial page, and I don&#8217;t think the students or instructor copied text over into the new page.</p>
<p>It&#8217;s very odd, but I think it all comes back to that blasted # sign.</p>
]]></content:encoded>
			<wfw:commentRss>http://knewquist.edublogs.org/2008/11/18/mdl-17237-cant-edit-a-wiki-with-a-hash-number-sign-pound-sign-in-its-name/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
