<?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>Das Noyse.net Blog &#187; KOT-Noyse</title>
	<atom:link href="http://noyse.net/blog/erguesse/category/kot-noyse/feed/" rel="self" type="application/rss+xml" />
	<link>http://noyse.net/blog</link>
	<description>Hier schreibt das Noyse noch selbst...</description>
	<lastBuildDate>Mon, 02 Aug 2010 07:37:55 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
<cloud domain='noyse.net' port='80' path='/blog/?rsscloud=notify' registerProcedure='' protocol='http-post' />
		<item>
		<title>Merke&#8230;(I)</title>
		<link>http://noyse.net/blog/erguesse/2008/09/19/merkei/</link>
		<comments>http://noyse.net/blog/erguesse/2008/09/19/merkei/#comments</comments>
		<pubDate>Fri, 19 Sep 2008 11:41:00 +0000</pubDate>
		<dc:creator>Noyse</dc:creator>
				<category><![CDATA[KOT-Noyse]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://noyse.net/blog/erguesse/2008/09/19/merkei/</guid>
		<description><![CDATA[Normalerweise definiere ich Attribute einer PHP Klasse private . Allerdings bin ich nun auf einige Hindernisse gestoßen. Nämlich dann wenn man auf Variablen einer geerbten Klasse zugreifen will. 1: private $brei; 2:&#160; 3: public function setBrei(){ 4: $this-&#62;brei='suess'; 5: echo $brei; 6: } 7: } 8:&#160; 9: class bar extends foo{ 10:&#160; 11: public function [...]]]></description>
			<content:encoded><![CDATA[<p>Normalerweise definiere ich Attribute einer PHP Klasse <font face="Courier">private </font><font face="ver">.</font></p>
<p>Allerdings bin ich nun auf einige Hindernisse gestoßen. Nämlich dann wenn man auf Variablen einer geerbten Klasse zugreifen will.</p>
<div><span id="more-152"></span></p>
<div style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px"><span style="color: #606060">   1:</span> <span style="color: #0000ff">private</span> $brei; </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px"><span style="color: #606060">   2:</span>&#160; </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px"><span style="color: #606060">   3:</span>     <span style="color: #0000ff">public</span> function setBrei(){</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px"><span style="color: #606060">   4:</span>         $<span style="color: #0000ff">this</span>-&gt;brei=<span style="color: #006080">'suess'</span>;</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px"><span style="color: #606060">   5:</span>         echo $brei;</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px"><span style="color: #606060">   6:</span>     }</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px"><span style="color: #606060">   7:</span> } </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px"><span style="color: #606060">   8:</span>&#160; </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px"><span style="color: #606060">   9:</span> <span style="color: #0000ff">class</span> bar extends foo{ </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px"><span style="color: #606060">  10:</span>&#160; </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px"><span style="color: #606060">  11:</span>      <span style="color: #0000ff">public</span> function setGeschmack(){</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px"><span style="color: #606060">  12:</span>         parent::setBrei();</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px"><span style="color: #606060">  13:</span>         $<span style="color: #0000ff">this</span>-&gt;brei=<span style="color: #006080">'salzig'</span>;</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px"><span style="color: #606060">  14:</span>         echo $brei;</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px"><span style="color: #606060">  15:</span>      }</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px"><span style="color: #606060">  16:</span> }</pre></div>
</div>
<p>Anders als zum Beispiel <a target="_blank" href="http://www.php-resource.de/forum/showthread.php?s=620f55fab4683a7b0109394e6cf846c6&amp;threadid=37012">hier</a> dargestellt, kann man in diesem Fall eben nicht mit <font face="Courier New">$this-&gt;brei</font> auf die <font face="Courier New">parent </font>Variable zugreifen, wenn diese <font face="Courier New">private</font> ist.</p>
<p>Zeile 7 ergibt:</p>
<p><font face="Courier New">suess</font>&#160;</p>
<p>Zeile 16 ergibt</p>
<p><font face="Courier New">suess </font>anstatt <font face="Courier New">salzig</font> wie erwartet!</p>
<p>Nach mehrmaligen Probieren kam ich auf die Lösung, dass es an der <font face="Courier New">private</font> Deklaration liegt. Wenn stattdessen <font face="Courier New">protected </font>genutzt wird, führt das Beispiel zum erwünschten Ergebnis. </p>
</p>
<div>
<div style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px"><span style="color: #606060">   1:</span> <span style="color: #0000ff">protected</span> $brei;</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px"><span style="color: #606060">   2:</span>&#160; </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px"><span style="color: #606060">   3:</span>     <span style="color: #0000ff">public</span> function setBrei(){</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px"><span style="color: #606060">   4:</span>         $<span style="color: #0000ff">this</span>-&gt;brei=<span style="color: #006080">'suess'</span>;</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px"><span style="color: #606060">   5:</span>         echo $brei;</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px"><span style="color: #606060">   6:</span>     }</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px"><span style="color: #606060">   7:</span> }</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px"><span style="color: #606060">   8:</span>&#160; </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px"><span style="color: #606060">   9:</span> <span style="color: #0000ff">class</span> bar extends foo{</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px"><span style="color: #606060">  10:</span>&#160; </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px"><span style="color: #606060">  11:</span>      <span style="color: #0000ff">public</span> function setGeschmack(){</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px"><span style="color: #606060">  12:</span>         parent::setBrei();</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px"><span style="color: #606060">  13:</span>         $<span style="color: #0000ff">this</span>-&gt;brei=<span style="color: #006080">'salzig'</span>;</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px"><span style="color: #606060">  14:</span>         echo $brei;</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px"><span style="color: #606060">  15:</span>      }</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px"><span style="color: #606060">  16:</span> }</pre></div>
</div>
<p>&#160;</p>
</p>
<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:c369e480-c905-4d47-9df8-b7e881930117" class="wlWriterEditableSmartContent">Technorati-Tags: <a href="http://technorati.com/tags/PHP" rel="tag">PHP</a>,<a href="http://technorati.com/tags/Veerbte+Variablen" rel="tag">Veerbte Variablen</a>,<a href="http://technorati.com/tags/Klassen" rel="tag">Klassen</a></div>
<div class="link-summarizer"><h3>Link Summary</h3><ul><li><a target="_blank" href='http://www.php-resource.de/forum/showthread.php?s=620f55fab4683a7b0109394e6cf846c6&amp;threadid=37012'>hier</a></li></ul></div><h3  class="related_post_title">auch im Noyse.net Blog</h3><ul class="related_post"><li><a href="http://noyse.net/blog/erguesse/2010/05/04/mein-gewinnspielpost/" title="Mein Gewinnspielpost">Mein Gewinnspielpost</a></li><li><a href="http://noyse.net/blog/erguesse/2006/10/23/ohne-titel-i/" title="Ohne Titel (I)">Ohne Titel (I)</a></li><li><a href="http://noyse.net/blog/erguesse/2008/09/17/verchromet-ii/" title="(ver)chrome(t) II">(ver)chrome(t) II</a></li><li><a href="http://noyse.net/blog/erguesse/2007/03/22/spanner/" title="Spanner">Spanner</a></li><li><a href="http://noyse.net/blog/erguesse/2006/01/25/bloggers-delight/" title="Bloggers Delight">Bloggers Delight</a></li></ul><!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a title="Click me to see the sites." href="#" onclick="$$('div.d152').each( function(e) { e.visualEffect('slide_down',{duration:2.5}) }); return false;"><strong><em>Bookmark It (klick to open)</em></strong></a>
<br />
<div class="d152" style="overflow:hidden">
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.bloglines.com/sub/http%3A%2F%2Fnoyse.net%2Fblog%2Ferguesse%2F2008%2F09%2F19%2Fmerkei%2F" rel="nofollow" title="Hinzufügen zu:&nbsp;Bloglines"><img class="social_img" src="http://noyse.net/blog/wp-content/plugins/social-bookmarks/images/bloglines.png" title="Hinzufügen zu:&nbsp;Bloglines" alt="Hinzufügen zu:&nbsp;Bloglines" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http%3A%2F%2Fnoyse.net%2Fblog%2Ferguesse%2F2008%2F09%2F19%2Fmerkei%2F&amp;title=Merke%26hellip%3B%28I%29" rel="nofollow" title="Hinzufügen zu:&nbsp;Del.icio.us"><img class="social_img" src="http://noyse.net/blog/wp-content/plugins/social-bookmarks/images/delicious.png" title="Hinzufügen zu:&nbsp;Del.icio.us" alt="Hinzufügen zu:&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fnoyse.net%2Fblog%2Ferguesse%2F2008%2F09%2F19%2Fmerkei%2F&amp;title=Merke%26hellip%3B%28I%29" rel="nofollow" title="Hinzufügen zu:&nbsp;digg"><img class="social_img" src="http://noyse.net/blog/wp-content/plugins/social-bookmarks/images/digg.png" title="Hinzufügen zu:&nbsp;digg" alt="Hinzufügen zu:&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.dotnetkicks.com/kick/?url=http%3A%2F%2Fnoyse.net%2Fblog%2Ferguesse%2F2008%2F09%2F19%2Fmerkei%2F&amp;title=Merke%26hellip%3B%28I%29" rel="nofollow" title="Hinzufügen zu:&nbsp;DotNetKicks"><img class="social_img" src="http://noyse.net/blog/wp-content/plugins/social-bookmarks/images/dotnetkicks.png" title="Hinzufügen zu:&nbsp;DotNetKicks" alt="Hinzufügen zu:&nbsp;DotNetKicks" /></a>
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fnoyse.net%2Fblog%2Ferguesse%2F2008%2F09%2F19%2Fmerkei%2F" rel="nofollow" title="Hinzufügen zu:&nbsp;Facebook"><img class="social_img" src="http://noyse.net/blog/wp-content/plugins/social-bookmarks/images/facebook.png" title="Hinzufügen zu:&nbsp;Facebook" alt="Hinzufügen zu:&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://cgi.fark.com/cgi/fark/farkit.pl?u=http%3A%2F%2Fnoyse.net%2Fblog%2Ferguesse%2F2008%2F09%2F19%2Fmerkei%2F&amp;h=Merke%26hellip%3B%28I%29" rel="nofollow" title="Hinzufügen zu:&nbsp;Fark"><img class="social_img" src="http://noyse.net/blog/wp-content/plugins/social-bookmarks/images/fark.png" title="Hinzufügen zu:&nbsp;Fark" alt="Hinzufügen zu:&nbsp;Fark" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fnoyse.net%2Fblog%2Ferguesse%2F2008%2F09%2F19%2Fmerkei%2F&amp;title=Merke%26hellip%3B%28I%29" rel="nofollow" title="Hinzufügen zu:&nbsp;Google Bookmarks"><img class="social_img" src="http://noyse.net/blog/wp-content/plugins/social-bookmarks/images/google.png" title="Hinzufügen zu:&nbsp;Google Bookmarks" alt="Hinzufügen zu:&nbsp;Google Bookmarks" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http%3A%2F%2Fnoyse.net%2Fblog%2Ferguesse%2F2008%2F09%2F19%2Fmerkei%2F&amp;bm_description=Merke%26hellip%3B%28I%29" rel="nofollow" title="Hinzufügen zu:&nbsp;Mister Wong"><img class="social_img" src="http://noyse.net/blog/wp-content/plugins/social-bookmarks/images/misterwong.png" title="Hinzufügen zu:&nbsp;Mister Wong" alt="Hinzufügen zu:&nbsp;Mister Wong" /></a>
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http%3A%2F%2Fnoyse.net%2Fblog%2Ferguesse%2F2008%2F09%2F19%2Fmerkei%2F&amp;T=Merke%26hellip%3B%28I%29" rel="nofollow" title="Hinzufügen zu:&nbsp;Netscape"><img class="social_img" src="http://noyse.net/blog/wp-content/plugins/social-bookmarks/images/netscape.png" title="Hinzufügen zu:&nbsp;Netscape" alt="Hinzufügen zu:&nbsp;Netscape" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http%3A%2F%2Fnoyse.net%2Fblog%2Ferguesse%2F2008%2F09%2F19%2Fmerkei%2F&amp;t=Merke%26hellip%3B%28I%29" rel="nofollow" title="Hinzufügen zu:&nbsp;Yahoo My Web"><img class="social_img" src="http://noyse.net/blog/wp-content/plugins/social-bookmarks/images/yahoo.png" title="Hinzufügen zu:&nbsp;Yahoo My Web" alt="Hinzufügen zu:&nbsp;Yahoo My Web" /></a>
<br />
<a style="font-size:90%;text-align: right; " title="Click me to hide the sites." href="#" onclick="$$('div.d152').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); return false;">Hide Sites</a>
</div>
</div>
<!-- Social Bookmarks END -->
<script type="text/javascript">$$('div.d152').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); </script>]]></content:encoded>
			<wfw:commentRss>http://noyse.net/blog/erguesse/2008/09/19/merkei/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
