<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array">
    <added>
      <filename>half_star.gif</filename>
    </added>
  </added>
  <modified type="array">
    <modified>
      <diff>@@ -1,18 +1,18 @@
 WP Movie Ratings changelog:
 
 2006-06-27
-- sidebar mode, where movie ratings are on a separate line, so the box can be as thin as 170px for star ratings (images) and 100px for text ratings
-- renamed HTTPRequest to WP_HTTP_Request class to avoid conflicts with other HTTPRequest classes from other plugins
-- new options panel which lets you set different display options (like the aforementioned sidebar mode)
-- option to display movie ratings using just text as an alternative to the images with stars
-- fixed CSS problems with Internet Explorer (now works properly even with IE 5.0)
-- css inclusion moved to &lt;head&gt; so that the generated pages that include the output from this plugin can now be XHTML compliant
-- removed nested SQL queries so that the plugin now works with older versions of MySQL
-- release 1.1
+- sidebar mode, where movie ratings are on a separate line, so the box can be as thin as 170px for star ratings (images) and 100px for text ratings.
+- renamed HTTPRequest class to WP_HTTP_Request to avoid conflicts with other HTTPRequest classes from other plugins.
+- new options panel which lets you set different display options (like the aforementioned sidebar mode).
+- option to display movie ratings using just text as an alternative to the images with stars.
+- fixed CSS problems with Internet Explorer (now works properly even with IE 5.0).
+- css inclusion moved to &lt;head&gt; so that the generated pages that include the output from this plugin can now be XHTML compliant.
+- removed nested SQL queries so that the plugin now works with older versions of MySQL.
+- release 1.1.
 
 2006-06-18
-- fixed division by zero bug in the statistics when there are no movies rated
-- release 1.0.1
+- fixed division by zero bug in the statistics when there are no movies rated.
+- release 1.0.1.
 
 2006-06-15
-- release 1.0 (initial release)
+- release 1.0 (initial release).</diff>
      <filename>changelog</filename>
    </modified>
    <modified>
      <diff>@@ -60,9 +60,6 @@ class Movie {
     # save movie rating to the database
     function save() {
 
-        # stare, bieze czas serwera
-        # $watched_on = date(&quot;Y-m-d H:i:s&quot;);
-
         # 2006-03-05 01:03:44
         $gmt_offset = get_option(&quot;gmt_offset&quot;);
         $watched_on = gmstrftime(&quot;%Y-%m-%d %H:%M:%S&quot;, time() + (3600 * $gmt_offset));
@@ -153,6 +150,7 @@ class Movie {
 		$include_review = (isset($options[&quot;include_review&quot;]) ? $options[&quot;include_review&quot;] : get_option(&quot;wp_movie_ratings_text_ratings&quot;));
 		$text_ratings = (isset($options[&quot;text_ratings&quot;]) ? $options[&quot;text_ratings&quot;] : get_option(&quot;wp_movie_ratings_include_review&quot;));
 		$sidebar_mode = (isset($options[&quot;sidebar_mode&quot;]) ? $options[&quot;sidebar_mode&quot;] : get_option(&quot;wp_movie_ratings_sidebar_mode&quot;));
+		$five_stars_ratings = (isset($options[&quot;five_stars_ratings&quot;]) ? $options[&quot;five_stars_ratings&quot;] : get_option(&quot;wp_movie_ratings_five_stars_ratings&quot;));
 
 		if (!is_plugin_page()) {
 			# shorten the title
@@ -173,20 +171,29 @@ class Movie {
 
         ?&gt;&lt;p class=&quot;item&quot;&gt;&lt;a class=&quot;url fn&quot; href=&quot;&lt;?= $this-&gt;_url ?&gt;&quot; title=&quot;&lt;?= $this-&gt;_title . &quot;\n&quot; ?&gt;Watched and reviewed on &lt;?= $this-&gt;_watched_on ?&gt;&quot;&gt;&lt;?= $title_short ?&gt;&lt;/a&gt; &lt;?php
 
-		# Text rating
+		# Text ratings
 		echo &quot;&lt;span class=\&quot;rating\&quot;&gt;&lt;span class=\&quot;value\&quot;&gt;&quot; . $this-&gt;_rating . &quot;&lt;/span&gt;/&lt;span class=\&quot;best\&quot;&gt;10&lt;/span&gt;&lt;/span&gt;\n&quot;;
 		echo &quot;&lt;/p&gt;\n&quot;;
 
         ?&gt;&lt;acronym class=&quot;dtreviewed&quot; title=&quot;&lt;?= str_replace(&quot; &quot;, &quot;T&quot;, $this-&gt;_watched_on) ?&gt;&quot;&gt;&lt;?= $this-&gt;_watched_on ?&gt;&lt;/acronym&gt;&lt;? echo &quot;\n&quot;;
 
-		# Star rating (images)
+		# Stars ratings using images
 		if ($text_ratings == &quot;no&quot;) {
 			echo &quot;&lt;div class=\&quot;rating_stars\&quot;&gt;\n&quot;;
-			# Reverse Polish notation (because of the float: right; in css)
-	        for ($i=1; $i&lt;11; $i++) {
-				if ($this-&gt;_rating &gt;= $i) { ?&gt;&lt;img src=&quot;&lt;?= $img_path ?&gt;full_star.gif&quot; alt=&quot;*&quot; /&gt;&lt;? echo &quot;\n&quot;; }
-				else { ?&gt;&lt;img src=&quot;&lt;?= $img_path ?&gt;empty_star.gif&quot; alt=&quot;&quot; /&gt;&lt;? echo &quot;\n&quot;; }
+			
+			if ($five_stars_ratings == &quot;yes&quot;) {
+				for ($i=1; $i&lt;6; $i++) {
+					if ($this-&gt;_rating == ($i*2 - 1)) { ?&gt;&lt;img src=&quot;&lt;?= $img_path ?&gt;half_star.gif&quot; alt=&quot;+&quot; /&gt;&lt;? echo &quot;\n&quot;; }
+					else if ($this-&gt;_rating &gt;= ($i*2)) { ?&gt;&lt;img src=&quot;&lt;?= $img_path ?&gt;full_star.gif&quot; alt=&quot;*&quot; /&gt;&lt;? echo &quot;\n&quot;; }
+					else { ?&gt;&lt;img src=&quot;&lt;?= $img_path ?&gt;empty_star.gif&quot; alt=&quot;&quot; /&gt;&lt;? echo &quot;\n&quot;; }
+				}
+			} else {
+				for ($i=1; $i&lt;11; $i++) {
+					if ($this-&gt;_rating &gt;= $i) { ?&gt;&lt;img src=&quot;&lt;?= $img_path ?&gt;full_star.gif&quot; alt=&quot;*&quot; /&gt;&lt;? echo &quot;\n&quot;; }
+					else { ?&gt;&lt;img src=&quot;&lt;?= $img_path ?&gt;empty_star.gif&quot; alt=&quot;&quot; /&gt;&lt;? echo &quot;\n&quot;; }
+				}
 			}
+
 			echo &quot;&lt;/div&gt;\n&quot;;
 		}
 </diff>
      <filename>movie.class.php</filename>
    </modified>
    <modified>
      <diff>@@ -71,6 +71,7 @@ function wp_movie_ratings_install() {
 	add_option('wp_movie_ratings_include_review', 'yes', 'Include review when displaying movie ratings?', 'no');
 	add_option('wp_movie_ratings_char_limit', 44, 'Display that much characters when the movie title is too long to fit', 'no');
 	add_option('wp_movie_ratings_sidebar_mode', 'no', 'Display rating below movie title as to not use too much space', 'no');
+	add_option('wp_movie_ratings_five_stars_ratings', 'no', 'Display ratings using 5 stars instead of 10', 'no');
 }
 
 
@@ -81,7 +82,7 @@ function wp_movie_ratings_stylesheet() {
 	if ($siteurl[strlen($siteurl)-1] != &quot;/&quot;) $siteurl .= &quot;/&quot;;
 	$tmp_array = parse_url($siteurl . &quot;wp-content/plugins/&quot; . dirname(plugin_basename(__FILE__)) . &quot;/&quot;);
 	$plugin_path = $tmp_array[&quot;path&quot;];
-	
+
 	echo &quot;&lt;link rel=\&quot;stylesheet\&quot; type=\&quot;text/css\&quot; media=\&quot;screen\&quot; href=\&quot;&quot; . $plugin_path;
 	echo (is_plugin_page() ? &quot;admin_page&quot; : basename(__FILE__, &quot;.php&quot;)) . &quot;.css&quot; . &quot;\&quot; /&gt;\n&quot;;
 }
@@ -90,9 +91,11 @@ function wp_movie_ratings_stylesheet() {
 # Show latest movie ratings
 # Params:
 #	$count - number of movies to show; if equals -1 it will read the number from the options saved in the database
-#   $options - optional parameters as hash array
-#		'text_ratings' -&gt; text ratings (like 5/10) or images of stars ('yes'/'no'); if not specified it will be read from the options saved in the database
-#       'include_review' -&gt; include review with each movie rating ('yes'/'no'); if not specified it will be read from the options saved in the database
+#   $options - optional parameters as hash array (if not specified, they will be read from the database)
+#		'text_ratings' -&gt; text ratings (like 5/10) or images of stars ('yes'/'no')
+#       'include_review' -&gt; include review with each movie rating ('yes'/'no')
+#	    'sidebar_mode' -&gt; compact view for sidebar mode ('yes'/'no')
+#	    'five_stars_ratings' -&gt; display movie ratings using 5 stars instead of 10 ('yes'/'no')
 function wp_movie_ratings_show($count = -1, $options = array()) {
 	global $wpdb, $table_prefix;
 
@@ -101,6 +104,7 @@ function wp_movie_ratings_show($count = -1, $options = array()) {
 	$text_ratings = (isset($options[&quot;text_ratings&quot;]) ? $options[&quot;text_ratings&quot;] : get_option(&quot;wp_movie_ratings_text_ratings&quot;));
 	$include_review = (isset($options[&quot;include_review&quot;]) ? $options[&quot;include_review&quot;] : get_option(&quot;wp_movie_ratings_include_review&quot;));
 	$sidebar_mode = (isset($options[&quot;sidebar_mode&quot;]) ? $options[&quot;sidebar_mode&quot;] : get_option(&quot;wp_movie_ratings_sidebar_mode&quot;));
+	$five_stars_ratings = (isset($options[&quot;five_stars_ratings&quot;]) ? $options[&quot;five_stars_ratings&quot;] : get_option(&quot;wp_movie_ratings_five_stars_ratings&quot;));
 
 	# plugin path
 	$siteurl = get_option(&quot;siteurl&quot;);
@@ -124,7 +128,7 @@ function wp_movie_ratings_show($count = -1, $options = array()) {
 	foreach($movies as $movie) {
 		echo &quot;&lt;li&quot; . ((++$i % 2) == 0 ? &quot; class=\&quot;odd\&quot;&quot; : &quot;&quot;) . &quot;&gt;\n&quot;;
 		echo &quot;&lt;div class=\&quot;hreview&quot; . ($sidebar_mode == &quot;yes&quot; ? &quot; sidebar_mode&quot; : &quot;&quot;) . &quot;\&quot;&gt;\n&quot;;
-		$movie-&gt;show($plugin_path, array(&quot;include_review&quot; =&gt; $include_review, &quot;text_ratings&quot; =&gt; $text_ratings, &quot;sidebar_mode&quot; =&gt; $sidebar_mode));
+		$movie-&gt;show($plugin_path, array(&quot;include_review&quot; =&gt; $include_review, &quot;text_ratings&quot; =&gt; $text_ratings, &quot;sidebar_mode&quot; =&gt; $sidebar_mode, &quot;five_stars_ratings&quot; =&gt; $five_stars_ratings));
 		echo &quot;&lt;span class=\&quot;version\&quot;&gt;0.3&lt;/span&gt;\n&quot;;
 		echo &quot;&lt;/div&gt;\n&quot;;
 		echo &quot;&lt;/li&gt;\n&quot;;
@@ -177,15 +181,15 @@ function wp_movie_ratings_management_page() {
 
 &lt;form method=&quot;post&quot; action=&quot;&quot;&gt;
 
-&lt;table class=&quot;optiontable&quot;&gt; 
+&lt;table class=&quot;optiontable&quot;&gt;
 
-&lt;tr valign=&quot;top&quot;&gt; 
-&lt;th scope=&quot;row&quot;&gt;&lt;label for=&quot;url&quot;&gt;iMDB link:&lt;/label&gt;&lt;/th&gt; 
-&lt;td&gt;&lt;input type=&quot;text&quot; name=&quot;url&quot; id=&quot;url&quot; class=&quot;text&quot; size=&quot;40&quot; /&gt;&lt;/td&gt; 
-&lt;/tr&gt; 
+&lt;tr valign=&quot;top&quot;&gt;
+&lt;th scope=&quot;row&quot;&gt;&lt;label for=&quot;url&quot;&gt;iMDB link:&lt;/label&gt;&lt;/th&gt;
+&lt;td&gt;&lt;input type=&quot;text&quot; name=&quot;url&quot; id=&quot;url&quot; class=&quot;text&quot; size=&quot;40&quot; /&gt;&lt;/td&gt;
+&lt;/tr&gt;
 
-&lt;tr valign=&quot;top&quot;&gt; 
-&lt;th scope=&quot;row&quot;&gt;&lt;label for=&quot;rating&quot;&gt;Movie rating:&lt;/label&gt;&lt;/th&gt; 
+&lt;tr valign=&quot;top&quot;&gt;
+&lt;th scope=&quot;row&quot;&gt;&lt;label for=&quot;rating&quot;&gt;Movie rating:&lt;/label&gt;&lt;/th&gt;
 &lt;td&gt;
 &lt;select name=&quot;rating&quot; id=&quot;rating&quot;&gt;
 &lt;option value=&quot;1&quot;&gt;1&lt;/option&gt;
@@ -199,16 +203,16 @@ function wp_movie_ratings_management_page() {
 &lt;option value=&quot;9&quot;&gt;9&lt;/option&gt;
 &lt;option value=&quot;10&quot;&gt;10&lt;/option&gt;
 &lt;/select&gt;
-&lt;/td&gt; 
-&lt;/tr&gt; 
+&lt;/td&gt;
+&lt;/tr&gt;
 
-&lt;tr valign=&quot;top&quot;&gt; 
-&lt;th scope=&quot;row&quot;&gt;&lt;label for=&quot;review&quot;&gt;Short review:&lt;/label&gt;&lt;/th&gt; 
+&lt;tr valign=&quot;top&quot;&gt;
+&lt;th scope=&quot;row&quot;&gt;&lt;label for=&quot;review&quot;&gt;Short review:&lt;/label&gt;&lt;/th&gt;
 &lt;td&gt;
 &lt;textarea name=&quot;review&quot; id=&quot;review&quot; rows=&quot;3&quot; cols=&quot;45&quot;&gt;
 &lt;/textarea&gt;
-&lt;/td&gt; 
-&lt;/tr&gt; 
+&lt;/td&gt;
+&lt;/tr&gt;
 
 &lt;/table&gt;
 
@@ -287,13 +291,14 @@ function wp_movie_ratings_options_page() {
 	# Save options in the database
 	if (isset($_POST[&quot;wp_movie_ratings_count&quot;]) &amp;&amp; isset($_POST[&quot;wp_movie_ratings_text_ratings&quot;])
 	&amp;&amp; isset($_POST[&quot;wp_movie_ratings_include_review&quot;]) &amp;&amp; isset($_POST[&quot;wp_movie_ratings_char_limit&quot;])
-	&amp;&amp; isset($_POST[&quot;wp_movie_ratings_sidebar_mode&quot;]) ) {
+	&amp;&amp; isset($_POST[&quot;wp_movie_ratings_sidebar_mode&quot;]) &amp;&amp; isset($_POST[&quot;wp_movie_ratings_five_stars_ratings&quot;]) ) {
 
 		update_option(&quot;wp_movie_ratings_count&quot;, $_POST[&quot;wp_movie_ratings_count&quot;]);
 		update_option(&quot;wp_movie_ratings_text_ratings&quot;, $_POST[&quot;wp_movie_ratings_text_ratings&quot;]);
 		update_option(&quot;wp_movie_ratings_include_review&quot;, $_POST[&quot;wp_movie_ratings_include_review&quot;]);
 		update_option(&quot;wp_movie_ratings_char_limit&quot;, $_POST[&quot;wp_movie_ratings_char_limit&quot;]);
 		update_option(&quot;wp_movie_ratings_sidebar_mode&quot;, $_POST[&quot;wp_movie_ratings_sidebar_mode&quot;]);
+		update_option(&quot;wp_movie_ratings_five_stars_ratings&quot;, $_POST[&quot;wp_movie_ratings_five_stars_ratings&quot;]);
 
 		echo &quot;&lt;div id=\&quot;message\&quot; class=\&quot;updated fade\&quot;&gt;&lt;p&gt;Options updated&lt;/p&gt;&lt;/div&gt;\n&quot;;
 	}
@@ -303,7 +308,7 @@ function wp_movie_ratings_options_page() {
 	$wp_movie_ratings_include_review = get_option(&quot;wp_movie_ratings_include_review&quot;);
 	$wp_movie_ratings_char_limit = get_option(&quot;wp_movie_ratings_char_limit&quot;);
 	$wp_movie_ratings_sidebar_mode = get_option(&quot;wp_movie_ratings_sidebar_mode&quot;);
-
+	$wp_movie_ratings_five_stars_ratings = get_option(&quot;wp_movie_ratings_five_stars_ratings&quot;);
 ?&gt;
 
 &lt;div class=&quot;wrap&quot;&gt;
@@ -313,22 +318,22 @@ function wp_movie_ratings_options_page() {
 
 &lt;table class=&quot;optiontable&quot;&gt;
 
-&lt;tr valign=&quot;top&quot;&gt; 
-&lt;th scope=&quot;row&quot;&gt;&lt;label for=&quot;wp_movie_ratings_count&quot;&gt;Number of displayed movie ratings (default):&lt;/label&gt;&lt;/th&gt; 
-&lt;td&gt;&lt;input type=&quot;text&quot; name=&quot;wp_movie_ratings_count&quot; id=&quot;wp_movie_ratings_count&quot; class=&quot;text&quot; size=&quot;2&quot; value=&quot;&lt;?= $wp_movie_ratings_count ?&gt;&quot;/&gt;&lt;/td&gt; 
-&lt;/tr&gt; 
+&lt;tr valign=&quot;top&quot;&gt;
+&lt;th scope=&quot;row&quot;&gt;&lt;label for=&quot;wp_movie_ratings_count&quot;&gt;Number of displayed movie ratings (default):&lt;/label&gt;&lt;/th&gt;
+&lt;td&gt;&lt;input type=&quot;text&quot; name=&quot;wp_movie_ratings_count&quot; id=&quot;wp_movie_ratings_count&quot; class=&quot;text&quot; size=&quot;2&quot; value=&quot;&lt;?= $wp_movie_ratings_count ?&gt;&quot;/&gt;&lt;/td&gt;
+&lt;/tr&gt;
 
-&lt;tr valign=&quot;top&quot;&gt; 
-&lt;th scope=&quot;row&quot;&gt;&lt;label for=&quot;wp_movie_ratings_text_ratings_yes&quot;&gt;Display movie ratings as text?&lt;/label&gt;&lt;/th&gt; 
+&lt;tr valign=&quot;top&quot;&gt;
+&lt;th scope=&quot;row&quot;&gt;&lt;label for=&quot;wp_movie_ratings_text_ratings_yes&quot;&gt;Display movie ratings as text?&lt;/label&gt;&lt;/th&gt;
 &lt;td&gt;
 &lt;input type=&quot;radio&quot; value=&quot;yes&quot; id=&quot;wp_movie_ratings_text_ratings_yes&quot; name=&quot;wp_movie_ratings_text_ratings&quot;&lt;?= ($wp_movie_ratings_text_ratings == &quot;yes&quot; ? &quot; checked=\&quot;checked\&quot;&quot; : &quot;&quot;) ?&gt; /&gt;
 &lt;label for=&quot;wp_movie_ratings_text_ratings_yes&quot;&gt;yes&lt;/label&gt;
 &lt;input type=&quot;radio&quot; value=&quot;no&quot; id=&quot;wp_movie_ratings_text_ratings_no&quot; name=&quot;wp_movie_ratings_text_ratings&quot;&lt;?= ($wp_movie_ratings_text_ratings == &quot;no&quot; ? &quot; checked=\&quot;checked\&quot;&quot; : &quot;&quot;) ?&gt; /&gt;
 &lt;label for=&quot;wp_movie_ratings_text_ratings_no&quot;&gt;no&lt;/label&gt;
 &lt;/td&gt;
-&lt;/tr&gt; 
+&lt;/tr&gt;
 
-&lt;tr valign=&quot;top&quot;&gt; 
+&lt;tr valign=&quot;top&quot;&gt;
 &lt;th scope=&quot;row&quot;&gt;&lt;label for=&quot;wp_movie_ratings_include_review_yes&quot;&gt;Display reviews?&lt;/label&gt;&lt;/th&gt;
 &lt;td&gt;
 &lt;input type=&quot;radio&quot; value=&quot;yes&quot; id=&quot;wp_movie_ratings_include_review_yes&quot; name=&quot;wp_movie_ratings_include_review&quot;&lt;?= ($wp_movie_ratings_include_review == &quot;yes&quot; ? &quot; checked=\&quot;checked\&quot;&quot; : &quot;&quot;) ?&gt; /&gt;
@@ -336,14 +341,14 @@ function wp_movie_ratings_options_page() {
 &lt;input type=&quot;radio&quot; value=&quot;no&quot; id=&quot;wp_movie_ratings_include_review_no&quot; name=&quot;wp_movie_ratings_include_review&quot;&lt;?= ($wp_movie_ratings_include_review == &quot;no&quot; ? &quot; checked=\&quot;checked\&quot;&quot; : &quot;&quot;) ?&gt; /&gt;
 &lt;label for=&quot;wp_movie_ratings_include_review_no&quot;&gt;no&lt;/label&gt;
 &lt;/td&gt;
-&lt;/tr&gt; 
+&lt;/tr&gt;
 
-&lt;tr valign=&quot;top&quot;&gt; 
+&lt;tr valign=&quot;top&quot;&gt;
 &lt;th scope=&quot;row&quot;&gt;&lt;label for=&quot;wp_movie_ratings_char_limit&quot;&gt;Display that much characters when the movie title is too long to fit:&lt;/label&gt;&lt;/th&gt;
-&lt;td&gt;&lt;input type=&quot;text&quot; name=&quot;wp_movie_ratings_char_limit&quot; id=&quot;wp_movie_ratings_char_limit&quot; class=&quot;text&quot; size=&quot;2&quot; value=&quot;&lt;?= $wp_movie_ratings_char_limit ?&gt;&quot;/&gt;&lt;/td&gt; 
-&lt;/tr&gt; 
+&lt;td&gt;&lt;input type=&quot;text&quot; name=&quot;wp_movie_ratings_char_limit&quot; id=&quot;wp_movie_ratings_char_limit&quot; class=&quot;text&quot; size=&quot;2&quot; value=&quot;&lt;?= $wp_movie_ratings_char_limit ?&gt;&quot;/&gt;&lt;/td&gt;
+&lt;/tr&gt;
 
-&lt;tr valign=&quot;top&quot;&gt; 
+&lt;tr valign=&quot;top&quot;&gt;
 &lt;th scope=&quot;row&quot;&gt;&lt;label for=&quot;wp_movie_ratings_sidebar_mode_yes&quot;&gt;Sidebar mode (movie rating is displayed in new line)?&lt;/label&gt;&lt;/th&gt;
 &lt;td&gt;
 &lt;input type=&quot;radio&quot; value=&quot;yes&quot; id=&quot;wp_movie_ratings_sidebar_mode_yes&quot; name=&quot;wp_movie_ratings_sidebar_mode&quot;&lt;?= ($wp_movie_ratings_sidebar_mode == &quot;yes&quot; ? &quot; checked=\&quot;checked\&quot;&quot; : &quot;&quot;) ?&gt; /&gt;
@@ -351,7 +356,17 @@ function wp_movie_ratings_options_page() {
 &lt;input type=&quot;radio&quot; value=&quot;no&quot; id=&quot;wp_movie_ratings_sidebar_mode_no&quot; name=&quot;wp_movie_ratings_sidebar_mode&quot;&lt;?= ($wp_movie_ratings_sidebar_mode == &quot;no&quot; ? &quot; checked=\&quot;checked\&quot;&quot; : &quot;&quot;) ?&gt; /&gt;
 &lt;label for=&quot;wp_movie_ratings_sidebar_mode_no&quot;&gt;no&lt;/label&gt;
 &lt;/td&gt;
-&lt;/tr&gt; 
+&lt;/tr&gt;
+
+&lt;tr valign=&quot;top&quot;&gt;
+&lt;th scope=&quot;row&quot;&gt;&lt;label for=&quot;wp_movie_ratings_five_stars_ratings_yes&quot;&gt;Display ratings using 5 stars instead of 10?&lt;/label&gt;&lt;/th&gt;
+&lt;td&gt;
+&lt;input type=&quot;radio&quot; value=&quot;yes&quot; id=&quot;wp_movie_ratings_five_stars_ratings_yes&quot; name=&quot;wp_movie_ratings_five_stars_ratings&quot;&lt;?= ($wp_movie_ratings_five_stars_ratings == &quot;yes&quot; ? &quot; checked=\&quot;checked\&quot;&quot; : &quot;&quot;) ?&gt; /&gt;
+&lt;label for=&quot;wp_movie_ratings_five_stars_ratings_yes&quot;&gt;yes&lt;/label&gt;
+&lt;input type=&quot;radio&quot; value=&quot;no&quot; id=&quot;wp_movie_ratings_five_stars_ratings_no&quot; name=&quot;wp_movie_ratings_five_stars_ratings&quot;&lt;?= ($wp_movie_ratings_five_stars_ratings == &quot;no&quot; ? &quot; checked=\&quot;checked\&quot;&quot; : &quot;&quot;) ?&gt; /&gt;
+&lt;label for=&quot;wp_movie_ratings_five_stars_ratings_no&quot;&gt;no&lt;/label&gt;
+&lt;/td&gt;
+&lt;/tr&gt;
 
 &lt;/table&gt;
 </diff>
      <filename>wp_movie_ratings.php</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>df4652f95dfb6fb07a6f2e9e64d7db7109e414ab</id>
    </parent>
  </parents>
  <author>
    <name>Pawe&#322; Go&#347;cicki</name>
    <email>pawel.goscicki@gmail.com</email>
  </author>
  <url>http://github.com/pjg/wp_movie_ratings/commit/c7c42472ee51b52420a079729ca2c41640e73c26</url>
  <id>c7c42472ee51b52420a079729ca2c41640e73c26</id>
  <committed-date>2006-07-06T11:04:55-07:00</committed-date>
  <authored-date>2006-07-06T11:04:55-07:00</authored-date>
  <message>Added option to display movie ratings using 5 stars instead of 10.</message>
  <tree>c56b6b56d45abda1bcb5413887259cae56637c49</tree>
  <committer>
    <name>Pawe&#322; Go&#347;cicki</name>
    <email>pawel.goscicki@gmail.com</email>
  </committer>
</commit>
