<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress.com" -->
<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/"
	>

<channel>
	<title>bugfix &amp;laquo; WordPress.com Tag Feed</title>
	<link>http://en.wordpress.com/tag/bugfix/</link>
	<description>Feed of posts on WordPress.com tagged "bugfix"</description>
	<pubDate>Sun, 27 Dec 2009 03:59:32 +0000</pubDate>

	<generator>http://en.wordpress.com/tags/</generator>
	<language>en</language>

<item>
<title><![CDATA[World of Warcraft Client Patch 3.3.0a]]></title>
<link>http://guildwip.wordpress.com/2009/12/15/world-of-warcraft-client-patch-3-3-0a/</link>
<pubDate>Tue, 15 Dec 2009 09:41:58 +0000</pubDate>
<dc:creator>kepolas</dc:creator>
<guid>http://guildwip.wordpress.com/2009/12/15/world-of-warcraft-client-patch-3-3-0a/</guid>
<description><![CDATA[This post is reposted from MMO &#8211; Champion ! Patch 3.3.0a has been deployed on US servers and w]]></description>
<content:encoded><![CDATA[This post is reposted from MMO &#8211; Champion ! Patch 3.3.0a has been deployed on US servers and w]]></content:encoded>
</item>
<item>
<title><![CDATA[Wordpress Plugin NextGEN Gallery Sorting Bugfix]]></title>
<link>http://rubensargsyan.wordpress.com/2009/11/27/wordpress-plugin-nextgen-gallery-sorting-bugfix/</link>
<pubDate>Fri, 27 Nov 2009 09:54:39 +0000</pubDate>
<dc:creator>Ruben Sargsyan</dc:creator>
<guid>http://rubensargsyan.wordpress.com/2009/11/27/wordpress-plugin-nextgen-gallery-sorting-bugfix/</guid>
<description><![CDATA[The changing the sort options of WordPress plugin &#8220;NextGEN Gallery&#8221; doesn&#8217;t affect]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>The changing the sort options of WordPress plugin &#8220;NextGEN Gallery&#8221; doesn&#8217;t affect on the images of the gallery sorted by tags. To fix the bug, do the following changes in nextgen-gallery\lib\ngg-db.php<!--more--></p>
<p>set</p>
<div style="color:#993300;">
// Check for the exclude setting</p>
<p>$ngg_options = get_option(&#8216;ngg_options&#8217;);<br />
$gal_sort = $ngg_options['galSort'];<br />
$gal_sort_dir = $ngg_options['galSortDir'];</p>
<p>if ( $gal_sort_dir == &#8216;RAND&#8217; ) {<br />
   $order_clause = &#8216;ORDER BY rand() &#8216;;<br />
} elseif ( $gal_sort_dir == &#8216;DESC&#8217; ) {<br />
   $order_clause = &#8216; ORDER BY t.&#8217;.$gal_sort.&#8217; DESC&#8217;;<br />
} else {<br />
   $order_clause = &#8216; ORDER BY t.&#8217;.$gal_sort.&#8217; ASC&#8217;;<br />
}
</p></div>
<p>instead of</p>
<div style="color:#993300;">
// Check for the exclude setting</p>
<p>$order_clause = ($order == &#8216;RAND&#8217;) ? &#8216;ORDER BY rand() &#8216; : &#8216; ORDER BY t.pid ASC&#8217; ;
</p></div>
<p>in the function <span style="color:#993300;">find_images_in_list</span>.</p>
<p>Getting the sort options from the database that is set in this function for not affecting on the work of other functions.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Lightbox 2 bugfix]]></title>
<link>http://rubensargsyan.wordpress.com/2009/11/16/lightbox-2-bugfix/</link>
<pubDate>Mon, 16 Nov 2009 11:22:39 +0000</pubDate>
<dc:creator>Ruben Sargsyan</dc:creator>
<guid>http://rubensargsyan.wordpress.com/2009/11/16/lightbox-2-bugfix/</guid>
<description><![CDATA[There is a bug in Lightbox 2 slideshow. When an image has no title during slideshow it shows the tit]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>There is a bug in Lightbox 2 slideshow. When an image has no title during slideshow it shows the title of previous or next image title. To fix this problem add in lightbox.js</p>
<p><span style="color:#993300;">else{<br />
this.caption.update(&#8220;&#8221;).show();<br />
}</span><br />
after</p>
<p><span style="color:#993300;">// if caption is not null<br />
if (this.imageArray[this.activeImage][1] != &#8220;&#8221;){<br />
this.caption.update(this.imageArray[this.activeImage][1]).show();<br />
}</span></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Wordpress theme "Cherry Dreams" sidebar problem for IE6]]></title>
<link>http://rubensargsyan.wordpress.com/2009/11/16/wordpress-theme-cherry-dreams-sidebar-problem-for-ie6/</link>
<pubDate>Mon, 16 Nov 2009 11:18:38 +0000</pubDate>
<dc:creator>Ruben Sargsyan</dc:creator>
<guid>http://rubensargsyan.wordpress.com/2009/11/16/wordpress-theme-cherry-dreams-sidebar-problem-for-ie6/</guid>
<description><![CDATA[To fix the problem add in header.php &lt;!&#8211;[if IE 6]&gt; &lt;link rel=&#8221;stylesheet&#8221;]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>To fix the problem add in header.php</p>
<p><span style="color:#993300;">&#60;!&#8211;[if IE 6]&#62;<br />
&#60;link rel=&#8221;stylesheet&#8221; href=&#8221;&#60;?php bloginfo(&#8216;template_directory&#8217;); ?&#62;/iestyle.css&#8221; type=&#8221;text/css&#8221; media=&#8221;screen&#8221; /&#62;<br />
&#60;![endif]&#8211;&#62;</span></p>
<p>after</p>
<p><span style="color:#993300;">&#60;link rel=&#8221;stylesheet&#8221; href=&#8221;&#60;?php bloginfo(&#8217;stylesheet_url&#8217;); ?&#62;&#8221; type=&#8221;text/css&#8221; media=&#8221;screen&#8221; /&#62;</span></p>
<p>then create file &#8220;iestyle.css&#8221; in theme folder and add</p>
<p><span style="color:#993300;">#sidebar{<br />
margin:0 9px 0 0;<br />
width:226px;<br />
float:right;<br />
text-align:left;<br />
}</span></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[bugfixes: TesslaSE (v1.2.1) + TesslaPRO (v1.0.1)]]></title>
<link>http://varietyofsound.wordpress.com/2009/11/15/bugfixes-tesslase-v1-2-1-tesslapro-v1-0-1/</link>
<pubDate>Sun, 15 Nov 2009 13:22:01 +0000</pubDate>
<dc:creator>varosound</dc:creator>
<guid>http://varietyofsound.wordpress.com/2009/11/15/bugfixes-tesslase-v1-2-1-tesslapro-v1-0-1/</guid>
<description><![CDATA[Both maintenance releases are containing important stability improvements, especially for the memory]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Both maintenance releases are containing important stability improvements, especially for the memory issues that were causing crashes when deleting plugins in some host applications.<!--more--></p>
<p>Additional changes TesslaSE 1.2.1</p>
<ul>
<li>noise model removed</li>
<li>faster loading times on systems with large amounts of system fonts</li>
<li>VST vendor tag changed to &#8216;Variety Of Sound&#8217;</li>
<li>manual updated</li>
</ul>
<p>Additional changes TesslaPRO 1.0.1</p>
<ul>
<li>samplerate compatibility issue fixed (internal filter)</li>
<li>VU needle renders proper on mono tracks now</li>
<li>VST vendor tag changed to &#8216;Variety Of Sound&#8217;</li>
</ul>
<p>Both updates are available through the downloads page <a href="http://varietyofsound.wordpress.com/downloads/" target="_blank">here</a>.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[John's managed to get a fix for the lin...]]></title>
<link>http://iphonedev.wordpress.org/2009/11/14/johns-managed-to-get-a-fix-for-the-lin/</link>
<pubDate>Sat, 14 Nov 2009 21:29:55 +0000</pubDate>
<dc:creator>MNT</dc:creator>
<guid>http://iphonedev.wordpress.org/2009/11/14/johns-managed-to-get-a-fix-for-the-lin/</guid>
<description><![CDATA[John&#8217;s managed to get a fix for the link helper ticket 274 ready for the 2.0.1 2.1 release. Th]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>John&#8217;s managed to get a fix for the link helper <a href="http://iphone.trac.wordpress.org/ticket/274">ticket 274</a> ready for the <strike>2.0.1</strike> 2.1 release. Thanks John!</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[bugfixes: Density mkII (v2.0.2) + FerricTDS (v1.0.2)]]></title>
<link>http://varietyofsound.wordpress.com/2009/11/10/bugfixes-density-mkii-v2-0-2-ferrictds-v1-0-2/</link>
<pubDate>Tue, 10 Nov 2009 12:43:39 +0000</pubDate>
<dc:creator>varosound</dc:creator>
<guid>http://varietyofsound.wordpress.com/2009/11/10/bugfixes-density-mkii-v2-0-2-ferrictds-v1-0-2/</guid>
<description><![CDATA[Both maintenance releases are containing important stability improvements, especially for the memory]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Both maintenance releases are containing important stability improvements, especially for the memory issues that were causing crashes when deleting plugins in some host applications.</p>
<p>The Density mkII v2.0.2 update is available through the downloads page <a href="http://varietyofsound.wordpress.com/downloads/" target="_blank">here</a>.</p>
<p>The FerricTDS v1.0.2 update is available through the KVR Developer Challenge over <a href="http://www.kvraudio.com/developer_challenge_2009.php#dc09_29" target="_blank">here</a>.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[cfix 1.5.1 released]]></title>
<link>http://jpassing.wordpress.com/2009/11/07/cfix-1-5-1-released/</link>
<pubDate>Sat, 07 Nov 2009 10:36:28 +0000</pubDate>
<dc:creator>jpassing</dc:creator>
<guid>http://jpassing.wordpress.com/2009/11/07/cfix-1-5-1-released/</guid>
<description><![CDATA[A new version of cfix, the unit testing framework for C and C++ on Windows, is now available on Sour]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>A new version of <a href='http://www.cfix-testing.org/'>cfix, the unit testing framework for C and C++ on Windows</a>, is now available on Sourceforge. Despite fixing several minor issues, the new version resolves the following two issues that were reported by users:</p>
<ul>
<li>Definiting multiple WinUnit fixtures with setup/teardown routines in a single .cpp file leads to a compilation error</li>
<li>A thread handle is leaked during execution of a test (#2889511)</li>
</ul>
<p>Updated binaries and source code are <a href='http://sourceforge.net/projects/cfix/files/'>available for download on Sourceforge</a>.</p>
<p><i>Btw, in case you use cfix for kernel mode testing and are using WDK 7600, please have a look at my previous post: <a href='http://jpassing.wordpress.com/2009/10/21/ltcg-issues-with-the-win7amd64-environment-of-wdk-7600/'>LTCG issues with the WIN7/amd64 environment of WDK 7600</a></i></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Scripting-Bug in Picard 0.11 beheben, ohne auf Version 0.12 warten zu müssen]]></title>
<link>http://jomai.wordpress.com/2009/10/18/scripting-bug-in-picard-0-11-beheben-ohne-auf-version-0-12-warten-zu-mussen/</link>
<pubDate>Sun, 18 Oct 2009 15:14:37 +0000</pubDate>
<dc:creator>Johannes</dc:creator>
<guid>http://jomai.wordpress.com/2009/10/18/scripting-bug-in-picard-0-11-beheben-ohne-auf-version-0-12-warten-zu-mussen/</guid>
<description><![CDATA[Ich nutze den MusicBrainz-Tagger Picard, um meine Musik komfortabel mit den korrekten ID3-Tags zu ve]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Ich nutze den <a href="http://musicbrainz.org">MusicBrainz</a>-Tagger <a href="http://musicbrainz.org/doc/Picard_Tagger">Picard</a>, um meine Musik komfortabel mit den korrekten ID3-Tags zu versorgen. Leider hat die momentan in den Ubuntu-Quellen befindliche Version 0.11 einen nervigen Bug, der das Scripting mit Picard unmöglich macht. Jedesmal, wenn man dort eine Klammer eingibt, friert das Programm ein. Doch gerade in der Möglichkeit, die zu speichernden Tags durch Scripting zu beeinflussen, ist eine der großen Stärken des Programms. Der Bug selbst ist den Picard-Entwicklern schon lange <a href="http://bugs.musicbrainz.org/ticket/5090">bekannt und behoben</a>, jedoch wird die offizielle Veröffentlichung wohl noch etwas auf sich warten lassen, denn der Fix ist erst für die nächste Version 0.12 angekündigt. Wer jedoch jetzt schon in den Genuss der Scripting-Funktionen kommen möchte, kann auch selbst Hand anlegen, denn da Picard in Python geschrieben ist, brauch man lediglich den Quellcode anzupassen, ohne das Programm neu kompilieren zu müssen. Die Änderungen belaufen sich außerdem gerade einmal auf zwei Codezeilen in einer einzigen Datei. Die nun folgende Anleitung zum Selbstbeheben des Fehlers entnehme ich dem betreffenden <a href="http://bazaar.launchpad.net/~musicbrainz-developers/picard/trunk/revision/920#picard/ui/options/scripting.py">Patch der Picard-Entwickler</a>.</p>
<p>Die betreffende Datei heißt passenderweise <em>scripting.py</em> und befindet sich im Verzeichnis <em>/usr/share/pyshared/picard/ui/options</em>. Zunächst einmal sollte man von der zu bearbeitenden Datei eine Kopie anlegen, denn sicher ist sicher.</p>
<pre>~$ cp /usr/share/pyshared/picard/ui/options/scripting.py ~
</pre>
<p>Gibt man diesen Befehl im Terminal ein, so erhält man eine Kopie der Datei in seinem Heimatverzeichnis. Anschließend öffnet man die Original-Datei mit Root-Rechten, um die Änderungen vorzunehmen. Ich verwende gedit zum Bearbeiten, natürlich kann hier jeder seinen favorisierten Texteditor nutzen:</p>
<pre>~$ gksudo gedit /usr/share/pyshared/picard/ui/options/scripting.py
</pre>
<p>Die zwei nun zu bearbeitenden Codezeilen befinden sich in den Zeilen 53 und 57. Gegebenenfalls muss man hierzu in den Optionen des Texteditors die Anzeige von Zeilennummern aktivieren. In gedit setzt man dazu den betreffenden Haken vor der Option &#8220;Zeilennummern anzeigen&#8221; unter <em>Bearbeiten</em> -&#62; <em>Einstellungen</em>. Im folgenden habe ich den einzugebenden Code grün gefärbt, zum Vergleich steht jeweils noch der alte Code in rot darüber.</p>
<pre>[...]
<span style="color:#ff0000;">Zeile 53 alt:          index = text.indexOf(expr)</span>
<span style="color:#00ff00;">Zeile 53 neu:          index = expr.indexIn(text)</span>
[...]
<span style="color:#ff0000;">Zeile 57 alt:              index = text.indexOf(expr, index + length + b)</span>
<span style="color:#00ff00;">Zeile 57 neu:              index = expr.indexIn(text, index + length + b)</span>
[...]
</pre>
<p>Anschließend speichert man die Datei und kann von nun an die Scriptingmöglichkeiten in Picard voll ausnutzen. Hierzu gibt es in der offiziellen <a href="http://musicbrainz.org/doc/Picard_Documentation">Picard-Dokumentation</a> eine sehr ausführliche <a href="http://musicbrainz.org/doc/Picard_Scripting">Liste mit möglichen Funktionen und Befehlen</a>.</p>
<p>Zum Schluss habe ich zu diesem Fehler noch <a href="https://bugs.launchpad.net/ubuntu/+source/picard/+bug/454687">ein Launchpad-Ticket</a> für das Ubuntu-Paket angelegt. Vielleicht wird der Fix ja demnächst auch in der offiziellen Ubuntu-Version übernommen.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[jquery mb.menu 2.7.2 (new release)]]></title>
<link>http://pupunzi.open-lab.com/2009/10/14/jquery-mb-menu-2-7-2-new-release/</link>
<pubDate>Wed, 14 Oct 2009 21:20:09 +0000</pubDate>
<dc:creator>Matteo Bicocchi</dc:creator>
<guid>http://pupunzi.open-lab.com/2009/10/14/jquery-mb-menu-2-7-2-new-release/</guid>
<description><![CDATA[In this release I&#8217;ve fixed two bugs: 2.7.2  bugfix: if property openOnClick was set to true an]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><h3>In this release I&#8217;ve fixed two bugs:</h3>
<p>2.7.2  bugfix:<br />
if property openOnClick was set to true and there was an empty root menu, once you get out from the empty root menu it didn&#8217;t unselect his state.</p>
<p>2.7.1 bugfix:<br />
Managed menuvoices with A HREF attr. Now when a menuvoice has an A HREF it remains an A HREF</p>
<p><a href="http://pupunzi.open-lab.com/mb-jquery-components/mb-_menu/">get it on the component page!</a></p>
</div>]]></content:encoded>
</item>

</channel>
</rss>
