Darren &amp; Otto thanks ... I just took a look at the line Otto referenced and will address making a change. What I also found odd was that I somehow had inadvertently added an extra semi-colon at the end of that line.  Either way, I will make a change and resubmit the theme. <br>

<br clear="all"><b style="color: rgb(0, 102, 0);"><span style="font-family: trebuchet ms,sans-serif;">Best Regards</span><br style="font-family: trebuchet ms,sans-serif;"><span style="font-family: trebuchet ms,sans-serif;">Tom Matteson</span></b><br style="font-family: trebuchet ms,sans-serif;">

<span style="font-family: trebuchet ms,sans-serif;"></span><span style="font-family: trebuchet ms,sans-serif;">----------------------------------------------------------------------------------------</span><font style="font-family: trebuchet ms,sans-serif;" size="2"><span style="color: rgb(79, 98, 40);"></span></font><span style="font-family: trebuchet ms,sans-serif;"><br>

</span><br>
<br><br><div class="gmail_quote">On Sat, Jul 16, 2011 at 4:18 PM, Otto <span dir="ltr">&lt;<a href="mailto:otto@ottodestruct.com">otto@ottodestruct.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">

Yep. In <a href="http://themes.svn.wordpress.org/wordsmith-anvil/1.6.7/functions/anvil-options.php" target="_blank">http://themes.svn.wordpress.org/wordsmith-anvil/1.6.7/functions/anvil-options.php</a>.<br>
<br>
This is wrong:<br>
<br>
$anvil_themedata =  get_theme_data( $stylesheet_uri );<br>
<br>
You should be using the STYLESHEETPATH define or the<br>
get_stylesheet_directory() function to get the full path to the<br>
stylesheet instead. You&#39;ll want to add style.css to the end of that,<br>
as it&#39;s a path, not the full name of the stylesheet.<br>
<br>
Better yet, don&#39;t. Do something else like hardcoding those values or<br>
something. get_theme_data takes a lot of processor power to parse and<br>
such, it&#39;s not worth it for an options page.<br>
<font color="#888888"><br>
-Otto<br>
</font><div><div></div><div class="h5"><br>
<br>
<br>
On Sat, Jul 16, 2011 at 6:12 PM, Otto &lt;<a href="mailto:otto@ottodestruct.com">otto@ottodestruct.com</a>&gt; wrote:<br>
&gt; What about get_theme_data? Are you using that anywhere? Are you doing<br>
&gt; anything with a URL anywhere?<br>
&gt;<br>
&gt; The core code itself doesn&#39;t pass URLs for filenames, so the fact that<br>
&gt; url fopen is disabled is fine.<br>
&gt;<br>
&gt; -Otto<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt; On Sat, Jul 16, 2011 at 5:42 PM, Tom Matteson<br>
&gt; &lt;<a href="mailto:perspectivevision@gmail.com">perspectivevision@gmail.com</a>&gt; wrote:<br>
&gt;&gt; Darren ... I am pretty sure they were both using 3.1.x ... and in response<br>
&gt;&gt; to your other question, my theme does not call get_file_data() anywhere.<br>
&gt;&gt;<br>
&gt;&gt; Best Regards<br>
&gt;&gt; Tom Matteson<br>
&gt;&gt; ----------------------------------------------------------------------------------------<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; On Sat, Jul 16, 2011 at 2:23 PM, Darren Slatten &lt;<a href="mailto:darrenslatten@gmail.com">darrenslatten@gmail.com</a>&gt;<br>
&gt;&gt; wrote:<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; I&#39;m guessing 3.1.x, since wp-includes/functions.php has an fopen() on line<br>
&gt;&gt;&gt; 4284 (whereas WP 3.2 has only a line break).<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; The WP function calling fopen() is get_file_data(). Does your theme call<br>
&gt;&gt;&gt; this function directly?<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; Here&#39;s the code:<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; /**<br>
&gt;&gt;&gt;  * Retrieve metadata from a file.<br>
&gt;&gt;&gt;  *<br>
&gt;&gt;&gt;  * Searches for metadata in the first 8kiB of a file, such as a plugin or<br>
&gt;&gt;&gt; theme.<br>
&gt;&gt;&gt;  * Each piece of metadata must be on its own line. Fields can not span<br>
&gt;&gt;&gt; multple<br>
&gt;&gt;&gt;  * lines, the value will get cut at the end of the first line.<br>
&gt;&gt;&gt;  *<br>
&gt;&gt;&gt;  * If the file data is not within that first 8kiB, then the author should<br>
&gt;&gt;&gt; correct<br>
&gt;&gt;&gt;  * their plugin file and move the data headers to the top.<br>
&gt;&gt;&gt;  *<br>
&gt;&gt;&gt;  * @see <a href="http://codex.wordpress.org/File_Header" target="_blank">http://codex.wordpress.org/File_Header</a><br>
&gt;&gt;&gt;  *<br>
&gt;&gt;&gt;  * @since 2.9.0<br>
&gt;&gt;&gt;  * @param string $file Path to the file<br>
&gt;&gt;&gt;  * @param array $default_headers List of headers, in the format<br>
&gt;&gt;&gt; array(&#39;HeaderKey&#39; =&gt; &#39;Header Name&#39;)<br>
&gt;&gt;&gt;  * @param string $context If specified adds filter hook<br>
&gt;&gt;&gt; &quot;extra_{$context}_headers&quot;<br>
&gt;&gt;&gt;  */<br>
&gt;&gt;&gt; function get_file_data( $file, $default_headers, $context = &#39;&#39; ) {<br>
&gt;&gt;&gt;     // We don&#39;t need to write to the file, so just open for reading.<br>
&gt;&gt;&gt;     $fp = fopen( $file, &#39;r&#39; );<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;     // Pull only the first 8kiB of the file in.<br>
&gt;&gt;&gt;     $file_data = fread( $fp, 8192 );<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;     // PHP will close file handle, but we are good citizens.<br>
&gt;&gt;&gt;     fclose( $fp );<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;     if ( $context != &#39;&#39; ) {<br>
&gt;&gt;&gt;         $extra_headers = apply_filters( &quot;extra_{$context}_headers&quot;,<br>
&gt;&gt;&gt; array() );<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;         $extra_headers = array_flip( $extra_headers );<br>
&gt;&gt;&gt;         foreach( $extra_headers as $key=&gt;$value ) {<br>
&gt;&gt;&gt;             $extra_headers[$key] = $key;<br>
&gt;&gt;&gt;         }<br>
&gt;&gt;&gt;         $all_headers = array_merge( $extra_headers, (array)<br>
&gt;&gt;&gt; $default_headers );<br>
&gt;&gt;&gt;     } else {<br>
&gt;&gt;&gt;         $all_headers = $default_headers;<br>
&gt;&gt;&gt;     }<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;     foreach ( $all_headers as $field =&gt; $regex ) {<br>
&gt;&gt;&gt;         preg_match( &#39;/^[ \t\/*#@]*&#39; . preg_quote( $regex, &#39;/&#39; ) .<br>
&gt;&gt;&gt; &#39;:(.*)$/mi&#39;, $file_data, ${$field});<br>
&gt;&gt;&gt;         if ( !empty( ${$field} ) )<br>
&gt;&gt;&gt;             ${$field} = _cleanup_header_comment( ${$field}[1] );<br>
&gt;&gt;&gt;         else<br>
&gt;&gt;&gt;             ${$field} = &#39;&#39;;<br>
&gt;&gt;&gt;     }<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;     $file_data = compact( array_keys( $all_headers ) );<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;     return $file_data;<br>
&gt;&gt;&gt; }<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; On Sat, Jul 16, 2011 at 4:14 PM, Darren Slatten &lt;<a href="mailto:darrenslatten@gmail.com">darrenslatten@gmail.com</a>&gt;<br>
&gt;&gt;&gt; wrote:<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; What version of WP are they using?<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; On Sat, Jul 16, 2011 at 3:49 PM, Tom Matteson<br>
&gt;&gt;&gt;&gt; &lt;<a href="mailto:perspectivevision@gmail.com">perspectivevision@gmail.com</a>&gt; wrote:<br>
&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt; Darren ... the first one switched to using a different theme because<br>
&gt;&gt;&gt;&gt;&gt; they could not resolve this. However, his WordPress installation was in a<br>
&gt;&gt;&gt;&gt;&gt; subdirectory (see the errors below **with the user&#39;s domain and subdirectory<br>
&gt;&gt;&gt;&gt;&gt; edited**) I do know the first user&#39;s site was hosted by surpasshosting dot<br>
&gt;&gt;&gt;&gt;&gt; com and per their security settings they would not enable allow_url_fopen<br>
&gt;&gt;&gt;&gt;&gt; ... other than that I am unaware of their php.ini settings<br>
&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt; Warning:<br>
&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt; fopen(<a href="http://primarydomain.com/sub-directory/wp-content/themes/wordsmith-anvil/style.css" target="_blank">http://primarydomain.com/sub-directory/wp-content/themes/wordsmith-anvil/style.css</a>)<br>


&gt;&gt;&gt;&gt;&gt; [function.fopen]: failed to open stream: no suitable wrapper could be<br>
&gt;&gt;&gt;&gt;&gt; found in<br>
&gt;&gt;&gt;&gt;&gt; /home/primaryd/public_html/sub-directory/wp-includes/functions.php on<br>
&gt;&gt;&gt;&gt;&gt; line<br>
&gt;&gt;&gt;&gt;&gt; 4284<br>
&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt; Warning: fread(): supplied argument is not a valid stream resource in<br>
&gt;&gt;&gt;&gt;&gt; /home/primaryd/public_html/sub-directory/wp-includes/functions.php on<br>
&gt;&gt;&gt;&gt;&gt; line<br>
&gt;&gt;&gt;&gt;&gt; 4287<br>
&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt; Warning: fclose(): supplied argument is not a valid stream resource in<br>
&gt;&gt;&gt;&gt;&gt; /home/primaryd/public_html/sub-directory/wp-includes/functions.php on<br>
&gt;&gt;&gt;&gt;&gt; line<br>
&gt;&gt;&gt;&gt;&gt; 4290&quot;<br>
&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt; One thing I had read somewhere is that using absolute paths (direct<br>
&gt;&gt;&gt;&gt;&gt; links) as opposed to relative paths could cause these errors to appear. In<br>
&gt;&gt;&gt;&gt;&gt; the Wordsmith Anvil theme the only direct links are:<br>
&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt; Developer and WordPress.org credit links (common with most all themes)<br>
&gt;&gt;&gt;&gt;&gt; Link to FAQ and Theme Home page in Admin Theme Options Page (fairly<br>
&gt;&gt;&gt;&gt;&gt; common)<br>
&gt;&gt;&gt;&gt;&gt; Various license links (common with all themes)<br>
&gt;&gt;&gt;&gt;&gt; Direct links assigned to Social Media variables for Twitter, FB, Flickr,<br>
&gt;&gt;&gt;&gt;&gt; YouTube ...[eg $flickrurl = &#39;<a href="http://www.flickr.com/photos/%27" target="_blank">http://www.flickr.com/photos/&#39;</a>;] (common to<br>
&gt;&gt;&gt;&gt;&gt; themes with these options)<br>
&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt; The second user&#39;s site is hosted with <a href="http://secureserver.net" target="_blank">secureserver.net</a> (there apparently<br>
&gt;&gt;&gt;&gt;&gt; have been some errors with that host server and WordPress in the past see:<br>
&gt;&gt;&gt;&gt;&gt; <a href="http://wordpress.org/support/topic/defaultsecureservernet" target="_blank">http://wordpress.org/support/topic/defaultsecureservernet</a>)<br>
&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt; The errors on the second user&#39;s site were the same. The user has<br>
&gt;&gt;&gt;&gt;&gt; currently deactivated the theme and has an under construction page<br>
&gt;&gt;&gt;&gt;&gt; displayed. I have emailed her to ask that she re-activate to get addtional<br>
&gt;&gt;&gt;&gt;&gt; feedback. I imagine it will be re-activated at some point today. For<br>
&gt;&gt;&gt;&gt;&gt; reference, the url to that site is: <a href="http://homesweethomerescue.org/" target="_blank">http://homesweethomerescue.org/</a><br>
&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt; As I discover additional details I will provide them.<br>
&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt; Best Regards<br>
&gt;&gt;&gt;&gt;&gt; Tom Matteson<br>
&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt; ---------------------------------------------------------------------------------------<br>
&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt; On Sat, Jul 16, 2011 at 12:37 PM, Darren Slatten<br>
&gt;&gt;&gt;&gt;&gt; &lt;<a href="mailto:darrenslatten@gmail.com">darrenslatten@gmail.com</a>&gt; wrote:<br>
&gt;&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt;&gt; This would be a lot easier to diagnose if you could provide information<br>
&gt;&gt;&gt;&gt;&gt;&gt; like:<br>
&gt;&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt;&gt; hosting environment<br>
&gt;&gt;&gt;&gt;&gt;&gt; php.ini settings<br>
&gt;&gt;&gt;&gt;&gt;&gt; full text of error messages<br>
&gt;&gt;&gt;&gt;&gt;&gt; what types of pages/requests generate the errors<br>
&gt;&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt;&gt; If the errors are only showing in 2:10,000 installations, then there&#39;s<br>
&gt;&gt;&gt;&gt;&gt;&gt; a good chance that those 2 users have an unusual server configuration or<br>
&gt;&gt;&gt;&gt;&gt;&gt; file/URL structure. Could be caused by something like trying to open/include<br>
&gt;&gt;&gt;&gt;&gt;&gt; a file or image that isn&#39;t in the typical location, relative to your theme.<br>
&gt;&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt;&gt; On Sat, Jul 16, 2011 at 3:47 AM, Tom Matteson<br>
&gt;&gt;&gt;&gt;&gt;&gt; &lt;<a href="mailto:perspectivevision@gmail.com">perspectivevision@gmail.com</a>&gt; wrote:<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt; Greetings All Concerned ...<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt; I have a theme on the Repository--Wordsmith Anvil--which does not use<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt; fopen, fgets or freads functions. It has been downloaded close to 10,000<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt; times and I have just received a comment from the second user who is<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt; receiving errors referencing &quot;failed to open stream: no suitable wrapper<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt; could be found in ...&quot;, or &quot;supplied argument is not a valid stream resource<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt; in ...&quot; with this theme. The errors all point to various lines of<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt; wp-includes/functions.php, except one file reference to the theme default<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt; css file, style.css. The first user told me they disabled all plugins. Also,<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt; they performed a fresh WordPress install and did not see the errors using<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt; TwentyTen and a number of other themes. The second user who contacted me<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt; yesterday told me they do not have any plugins installed and when they<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt; activated the Wordsmith Anvil theme, these errors display at the top of the<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt; page.<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt; Knowing that these functions are not used in this theme; yet the<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt; errors seem to be theme specific, and each user experiencing these errors<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt; have WordPress installations hosted on entirely different servers I am more<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt; uncertain as to why these errors are being displayed. I was hoping someone<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt; on this list may have experienced this with another theme and could shed<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt; some light on why these errors would occur when the theme does not use those<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt; functions. In fact, if these functions had been used in my theme, I am<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt; fairly certain it would not have been approved anyway.<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt; Otto, Nathan, Chip, Justin, Emil, Cais, etc ... any thoughts or<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt; feedback on this. I would like to address this so that users in the future<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt; do not see these errors.<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt; Best Regards<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt; Tom Matteson<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt; _______________________________________________<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt; theme-reviewers mailing list<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt; <a href="mailto:theme-reviewers@lists.wordpress.org">theme-reviewers@lists.wordpress.org</a><br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt; <a href="http://lists.wordpress.org/mailman/listinfo/theme-reviewers" target="_blank">http://lists.wordpress.org/mailman/listinfo/theme-reviewers</a><br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt;&gt; --<br>
&gt;&gt;&gt;&gt;&gt;&gt; Darren Slatten<br>
&gt;&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt;&gt; _______________________________________________<br>
&gt;&gt;&gt;&gt;&gt;&gt; theme-reviewers mailing list<br>
&gt;&gt;&gt;&gt;&gt;&gt; <a href="mailto:theme-reviewers@lists.wordpress.org">theme-reviewers@lists.wordpress.org</a><br>
&gt;&gt;&gt;&gt;&gt;&gt; <a href="http://lists.wordpress.org/mailman/listinfo/theme-reviewers" target="_blank">http://lists.wordpress.org/mailman/listinfo/theme-reviewers</a><br>
&gt;&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt; _______________________________________________<br>
&gt;&gt;&gt;&gt;&gt; theme-reviewers mailing list<br>
&gt;&gt;&gt;&gt;&gt; <a href="mailto:theme-reviewers@lists.wordpress.org">theme-reviewers@lists.wordpress.org</a><br>
&gt;&gt;&gt;&gt;&gt; <a href="http://lists.wordpress.org/mailman/listinfo/theme-reviewers" target="_blank">http://lists.wordpress.org/mailman/listinfo/theme-reviewers</a><br>
&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; --<br>
&gt;&gt;&gt;&gt; Darren Slatten<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; --<br>
&gt;&gt;&gt; Darren Slatten<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; _______________________________________________<br>
&gt;&gt;&gt; theme-reviewers mailing list<br>
&gt;&gt;&gt; <a href="mailto:theme-reviewers@lists.wordpress.org">theme-reviewers@lists.wordpress.org</a><br>
&gt;&gt;&gt; <a href="http://lists.wordpress.org/mailman/listinfo/theme-reviewers" target="_blank">http://lists.wordpress.org/mailman/listinfo/theme-reviewers</a><br>
&gt;&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; _______________________________________________<br>
&gt;&gt; theme-reviewers mailing list<br>
&gt;&gt; <a href="mailto:theme-reviewers@lists.wordpress.org">theme-reviewers@lists.wordpress.org</a><br>
&gt;&gt; <a href="http://lists.wordpress.org/mailman/listinfo/theme-reviewers" target="_blank">http://lists.wordpress.org/mailman/listinfo/theme-reviewers</a><br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;<br>
_______________________________________________<br>
theme-reviewers mailing list<br>
<a href="mailto:theme-reviewers@lists.wordpress.org">theme-reviewers@lists.wordpress.org</a><br>
<a href="http://lists.wordpress.org/mailman/listinfo/theme-reviewers" target="_blank">http://lists.wordpress.org/mailman/listinfo/theme-reviewers</a><br>
</div></div></blockquote></div><br>