<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -82,8 +82,7 @@
 		 */
 		static function add($name, $permissions) {
 			$sql = SQL::current();
-			$sql-&gt;insert(&quot;groups&quot;, array(&quot;name&quot; =&gt; &quot;:name&quot;, &quot;permissions&quot; =&gt; &quot;:permissions&quot;),
-			                       array(&quot;:name&quot;  =&gt; $name,   &quot;:permissions&quot;  =&gt; YAML::dump($permissions)));
+			$sql-&gt;insert(&quot;groups&quot;, array(&quot;name&quot; =&gt; $name, &quot;permissions&quot; =&gt; YAML::dump($permissions)));
 
 			$group = new self($sql-&gt;latest());
 </diff>
      <filename>includes/model/Group.php</filename>
    </modified>
    <modified>
      <diff>@@ -65,30 +65,16 @@
 			$sql = SQL::current();
 			$visitor = Visitor::current();
 			$sql-&gt;insert(&quot;pages&quot;,
-			             array(
-			                 &quot;title&quot; =&gt; &quot;:title&quot;,
-			                 &quot;body&quot; =&gt; &quot;:body&quot;,
-			                 &quot;user_id&quot; =&gt; &quot;:user_id&quot;,
-			                 &quot;parent_id&quot; =&gt; &quot;:parent_id&quot;,
-			                 &quot;show_in_list&quot; =&gt; &quot;:show_in_list&quot;,
-			                 &quot;list_order&quot; =&gt; &quot;:list_order&quot;,
-			                 &quot;clean&quot; =&gt; &quot;:clean&quot;,
-			                 &quot;url&quot; =&gt; &quot;:url&quot;,
-			                 &quot;created_at&quot; =&gt; &quot;:created_at&quot;,
-			                 &quot;updated_at&quot; =&gt; &quot;:updated_at&quot;
-			             ),
-			             array(
-			                 &quot;:title&quot; =&gt; $title,
-			                 &quot;:body&quot; =&gt; $body,
-			                 &quot;:user_id&quot; =&gt; fallback($user_id, $visitor-&gt;id),
-			                 &quot;:parent_id&quot; =&gt; $parent_id,
-			                 &quot;:show_in_list&quot; =&gt; $show_in_list,
-			                 &quot;:list_order&quot; =&gt; $list_order,
-			                 &quot;:clean&quot; =&gt; $clean,
-			                 &quot;:url&quot; =&gt; $url,
-			                 &quot;:created_at&quot; =&gt; fallback($created_at, datetime()),
-			                 &quot;:updated_at&quot; =&gt; fallback($updated_at, &quot;0000-00-00 00:00:00&quot;)
-			             ));
+			             array(&quot;title&quot; =&gt; $title,
+			                   &quot;body&quot; =&gt; $body,
+			                   &quot;user_id&quot; =&gt; fallback($user_id, $visitor-&gt;id),
+			                   &quot;parent_id&quot; =&gt; $parent_id,
+			                   &quot;show_in_list&quot; =&gt; $show_in_list,
+			                   &quot;list_order&quot; =&gt; $list_order,
+			                   &quot;clean&quot; =&gt; $clean,
+			                   &quot;url&quot; =&gt; $url,
+			                   &quot;created_at&quot; =&gt; fallback($created_at, datetime()),
+			                   &quot;updated_at&quot; =&gt; fallback($updated_at, &quot;0000-00-00 00:00:00&quot;)));
 
 			$page = new self($sql-&gt;latest());
 </diff>
      <filename>includes/model/Page.php</filename>
    </modified>
    <modified>
      <diff>@@ -162,24 +162,15 @@
 			$sql = SQL::current();
 			$visitor = Visitor::current();
 			$sql-&gt;insert(&quot;posts&quot;,
-			             array(&quot;xml&quot; =&gt; &quot;:xml&quot;,
-			                   &quot;feather&quot; =&gt; &quot;:feather&quot;,
-			                   &quot;user_id&quot; =&gt; &quot;:user_id&quot;,
-			                   &quot;pinned&quot; =&gt; &quot;:pinned&quot;,
-			                   &quot;status&quot; =&gt; &quot;:status&quot;,
-			                   &quot;clean&quot; =&gt; &quot;:clean&quot;,
-			                   &quot;url&quot; =&gt; &quot;:url&quot;,
-			                   &quot;created_at&quot; =&gt; &quot;:created_at&quot;,
-			                   &quot;updated_at&quot; =&gt; &quot;:updated_at&quot;),
-			             array(&quot;:xml&quot; =&gt; $xml-&gt;asXML(),
-			                   &quot;:feather&quot; =&gt; $feather,
-			                   &quot;:user_id&quot; =&gt; $user,
-			                   &quot;:pinned&quot; =&gt; (int) $pinned,
-			                   &quot;:status&quot; =&gt; $status,
-			                   &quot;:clean&quot; =&gt; $clean,
-			                   &quot;:url&quot; =&gt; $url,
-			                   &quot;:created_at&quot; =&gt; $created_at,
-			                   &quot;:updated_at&quot; =&gt; $updated_at));
+			             array(&quot;xml&quot; =&gt; $xml-&gt;asXML(),
+			                   &quot;feather&quot; =&gt; $feather,
+			                   &quot;user_id&quot; =&gt; $user,
+			                   &quot;pinned&quot; =&gt; (int) $pinned,
+			                   &quot;status&quot; =&gt; $status,
+			                   &quot;clean&quot; =&gt; $clean,
+			                   &quot;url&quot; =&gt; $url,
+			                   &quot;created_at&quot; =&gt; $created_at,
+			                   &quot;updated_at&quot; =&gt; $updated_at));
 			$id = $sql-&gt;latest();
 
 			if (empty($clean) or empty($url))
@@ -547,17 +538,15 @@
 			if ($this-&gt;no_results)
 				return false;
 
-			$where = array(&quot;(created_at &gt; :created_at OR id &gt; :id)&quot;);
+			$where = array(&quot;created_at &gt; :created_at OR id &gt; :id&quot;);
 
-			$statuses = array(&quot;public&quot;);
+			$where[&quot;status&quot;] = array(&quot;public&quot;);
 			if ($this-&gt;status == &quot;draft&quot;)
-				$statuses[] = &quot;draft&quot;;
+				$where[&quot;status&quot;][] = &quot;draft&quot;;
 			if (logged_in())
-				$statuses[] = &quot;registered_only&quot;;
+				$where[&quot;status&quot;][] = &quot;registered_only&quot;;
 			if (Visitor::current()-&gt;group()-&gt;can(&quot;view_private&quot;))
-				$statuses[] = &quot;private&quot;;
-
-			$where[] = &quot;status IN ('&quot;.implode(&quot;', '&quot;, $statuses).&quot;')&quot;;
+				$where[&quot;status&quot;][] = &quot;private&quot;;
 
 			return new self(null, array(&quot;where&quot; =&gt; $where,
 			                            &quot;order&quot; =&gt; &quot;created_at ASC, id ASC&quot;,</diff>
      <filename>includes/model/Post.php</filename>
    </modified>
    <modified>
      <diff>@@ -67,23 +67,13 @@
 			$config = Config::current();
 			$sql = SQL::current();
 			$sql-&gt;insert(&quot;users&quot;,
-			             array(
-			                 &quot;login&quot; =&gt; &quot;:login&quot;,
-			                 &quot;password&quot; =&gt; &quot;:password&quot;,
-			                 &quot;email&quot; =&gt; &quot;:email&quot;,
-			                 &quot;full_name&quot; =&gt; &quot;:full_name&quot;,
-			                 &quot;website&quot; =&gt; &quot;:website&quot;,
-			                 &quot;group_id&quot; =&gt; &quot;:group_id&quot;,
-			                 &quot;joined_at&quot; =&gt; &quot;:joined_at&quot;),
-			             array(
-			                 &quot;:login&quot; =&gt; strip_tags($login),
-			                 &quot;:password&quot; =&gt; md5($password),
-			                 &quot;:email&quot; =&gt; strip_tags($email),
-			                 &quot;:full_name&quot; =&gt; strip_tags($full_name),
-			                 &quot;:website&quot; =&gt; strip_tags($website),
-			                 &quot;:group_id&quot; =&gt; ($group_id) ? intval($group_id) : $config-&gt;default_group,
-			                 &quot;:joined_at&quot; =&gt; fallback($joined_at, datetime())
-			            ));
+			             array(&quot;login&quot; =&gt; strip_tags($login),
+			                   &quot;password&quot; =&gt; md5($password),
+			                   &quot;email&quot; =&gt; strip_tags($email),
+			                   &quot;full_name&quot; =&gt; strip_tags($full_name),
+			                   &quot;website&quot; =&gt; strip_tags($website),
+			                   &quot;group_id&quot; =&gt; ($group_id) ? intval($group_id) : $config-&gt;default_group,
+			                   &quot;joined_at&quot; =&gt; fallback($joined_at, datetime())));
 
 			$user = new self($sql-&gt;latest());
 </diff>
      <filename>includes/model/User.php</filename>
    </modified>
    <modified>
      <diff>@@ -265,9 +265,7 @@
 			                     &quot;delete_group&quot; =&gt; &quot;Delete Groups&quot;);
 
 			foreach ($permissions as $permission =&gt; $name)
-				$sql-&gt;replace(&quot;permissions&quot;,
-				              array(&quot;id&quot; =&gt; &quot;:permission&quot;, &quot;name&quot; =&gt; &quot;:name&quot;),
-				              array(&quot;:permission&quot; =&gt; $permission, &quot;:name&quot; =&gt; $name));
+				$sql-&gt;replace(&quot;permissions&quot;, array(&quot;id&quot; =&gt; $permission, &quot;name&quot; =&gt; $name));
 
 			$groups = array(&quot;admin&quot; =&gt; YAML::dump(array_keys($permissions)),
 			                &quot;member&quot; =&gt; YAML::dump(array(&quot;view_site&quot;)),
@@ -278,9 +276,7 @@
 			# Insert the default groups (see above)
 			$group_id = array();
 			foreach($groups as $name =&gt; $permissions) {
-				$sql-&gt;replace(&quot;groups&quot;,
-				              array(&quot;name&quot; =&gt; &quot;:name&quot;, &quot;permissions&quot; =&gt; &quot;:permissions&quot;),
-				              array(&quot;:name&quot; =&gt; ucfirst($name), &quot;:permissions&quot; =&gt; $permissions));
+				$sql-&gt;replace(&quot;groups&quot;, array(&quot;name&quot; =&gt; ucfirst($name), &quot;permissions&quot; =&gt; $permissions));
 
 				$group_id[$name] = $sql-&gt;latest();
 			}</diff>
      <filename>install.php</filename>
    </modified>
    <modified>
      <diff>@@ -169,31 +169,18 @@
 
 			$sql = SQL::current();
 			$sql-&gt;insert(&quot;comments&quot;,
-			             array(&quot;body&quot; =&gt; &quot;:body&quot;,
-			                   &quot;author&quot; =&gt; &quot;:author&quot;,
-			                   &quot;author_url&quot; =&gt; &quot;:author_url&quot;,
-			                   &quot;author_email&quot; =&gt; &quot;:author_email&quot;,
-			                   &quot;author_ip&quot; =&gt; &quot;:author_ip&quot;,
-			                   &quot;author_agent&quot; =&gt; &quot;:author_agent&quot;,
-			                   &quot;status&quot; =&gt; &quot;:status&quot;,
-			                   &quot;signature&quot; =&gt; &quot;:signature&quot;,
-			                   &quot;post_id&quot; =&gt; &quot;:post_id&quot;,
-			                   &quot;user_id&quot; =&gt; &quot;:user_id&quot;,
-			                   &quot;created_at&quot; =&gt; &quot;:created_at&quot;,
-			                   &quot;updated_at&quot; =&gt; &quot;:updated_at&quot;),
-			             array(&quot;:body&quot; =&gt; $body,
-			                   &quot;:author&quot; =&gt; strip_tags($author),
-			                   &quot;:author_url&quot; =&gt; strip_tags($url),
-			                   &quot;:author_email&quot; =&gt; strip_tags($email),
-			                   &quot;:author_ip&quot; =&gt; $ip,
-			                   &quot;:author_agent&quot; =&gt; $agent,
-			                   &quot;:status&quot; =&gt; $status,
-			                   &quot;:signature&quot; =&gt; $signature,
-			                   &quot;:post_id&quot; =&gt; $post-&gt;id,
-			                   &quot;:user_id&quot;=&gt; $user_id,
-			                   &quot;:created_at&quot; =&gt; fallback($created_at, datetime()),
-			                   &quot;:updated_at&quot; =&gt; fallback($updated_at, &quot;0000-00-00 00:00:00&quot;)
-			             ));
+			             array(&quot;body&quot; =&gt; $body,
+			                   &quot;author&quot; =&gt; strip_tags($author),
+			                   &quot;author_url&quot; =&gt; strip_tags($url),
+			                   &quot;author_email&quot; =&gt; strip_tags($email),
+			                   &quot;author_ip&quot; =&gt; $ip,
+			                   &quot;author_agent&quot; =&gt; $agent,
+			                   &quot;status&quot; =&gt; $status,
+			                   &quot;signature&quot; =&gt; $signature,
+			                   &quot;post_id&quot; =&gt; $post-&gt;id,
+			                   &quot;user_id&quot;=&gt; $user_id,
+			                   &quot;created_at&quot; =&gt; fallback($created_at, datetime()),
+			                   &quot;updated_at&quot; =&gt; fallback($updated_at, &quot;0000-00-00 00:00:00&quot;)));
 			$new = new self($sql-&gt;latest());;
 
 			Trigger::current()-&gt;call(&quot;add_comment&quot;, $new);</diff>
      <filename>modules/comments/model.Comment.php</filename>
    </modified>
    <modified>
      <diff>@@ -94,11 +94,7 @@
 			$tags_cleaned_string = &quot;{{&quot;.implode(&quot;}},{{&quot;, $tags_cleaned).&quot;}}&quot;;
 
 			$sql = SQL::current();
-			$sql-&gt;insert(&quot;tags&quot;, array(&quot;tags&quot; =&gt; &quot;:tags&quot;, &quot;clean&quot; =&gt; &quot;:clean&quot;, &quot;post_id&quot; =&gt; &quot;:post_id&quot;), array(
-			                 &quot;:tags&quot;    =&gt; $tags_string,
-			                 &quot;:clean&quot;   =&gt; $tags_cleaned_string,
-			                 &quot;:post_id&quot; =&gt; $post-&gt;id
-			             ));
+			$sql-&gt;insert(&quot;tags&quot;, array(&quot;tags&quot; =&gt; $tags_string, &quot;clean&quot; =&gt; $tags_cleaned_string, &quot;post_id&quot; =&gt; $post-&gt;id));
 		}
 
 		public function update_post($post) {
@@ -120,11 +116,7 @@
 			if (empty($tags_string) and empty($tags_cleaned_string))
 				$sql-&gt;delete(&quot;tags&quot;, array(&quot;post_id&quot; =&gt; $post-&gt;id));
 			else
-				$sql-&gt;insert(&quot;tags&quot;, array(&quot;tags&quot; =&gt; &quot;:tags&quot;, &quot;clean&quot; =&gt; &quot;:clean&quot;, &quot;post_id&quot; =&gt; &quot;:post_id&quot;), array(
-				                 &quot;:tags&quot;    =&gt; $tags_string,
-				                 &quot;:clean&quot;   =&gt; $tags_cleaned_string,
-				                 &quot;:post_id&quot; =&gt; $post-&gt;id
-				             ));
+				$sql-&gt;insert(&quot;tags&quot;, array(&quot;tags&quot; =&gt; $tags_string, &quot;clean&quot; =&gt; $tags_cleaned_string, &quot;post_id&quot; =&gt; $post-&gt;id));
 		}
 
 		public function delete_post($post) {
@@ -226,10 +218,12 @@
 				                 &quot;tags.*&quot;,
 				                 array(Post::$private, Post::$enabled_feathers),
 				                 null,
-				                 array(&quot;:tag&quot; =&gt; &quot;%{{&quot;.$_GET['name'].&quot;}}%&quot;),
-				                 null, null, null,
+				                 array(),
+				                 null,
+				                 null,
+				                 null,
 				                 array(array(&quot;table&quot; =&gt; &quot;tags&quot;,
-				                             &quot;where&quot; =&gt; array(&quot;post_id = posts.id&quot;, &quot;clean LIKE :tag&quot;))))-&gt;fetchAll() as $tag) {
+				                             &quot;where&quot; =&gt; array(&quot;post_id = posts.id&quot;, array(&quot;clean like&quot; =&gt; &quot;%{{&quot;.$_GET['name'].&quot;}}%&quot;))))-&gt;fetchAll() as $tag) {
 				if ($tag[&quot;id&quot;] == null)
 					continue;
 
@@ -277,9 +271,7 @@
 			$clean = array();
 			foreach($sql-&gt;select(&quot;tags&quot;,
 				                 &quot;*&quot;,
-				                 &quot;clean LIKE :tag&quot;,
-				                 null,
-				                 array(&quot;:tag&quot; =&gt; &quot;%{{&quot;.$_POST['clean'].&quot;}}%&quot;))-&gt;fetchAll() as $tag) {
+				                 array(&quot;clean like&quot; =&gt; &quot;%{{&quot;.$_POST['clean'].&quot;}}%&quot;))-&gt;fetchAll() as $tag) {
 				$names = str_replace(&quot;{{&quot;.$_POST['clean'].&quot;}}&quot;, &quot;{{&quot;.$_POST['name'].&quot;}}&quot;, $tag[&quot;tags&quot;]);
 				$clean = str_replace(&quot;{{&quot;.$_POST['clean'].&quot;}}&quot;, &quot;{{&quot;.sanitize($_POST['name']).&quot;}}&quot;, $tag[&quot;clean&quot;]);
 				$sql-&gt;update(&quot;tags&quot;,
@@ -369,12 +361,9 @@
 
 			if (!empty($tags) and !empty($cleaned))
 				SQL::current()-&gt;insert(&quot;tags&quot;,
-				                       array(&quot;tags&quot;     =&gt; &quot;:tags&quot;,
-				                             &quot;clean&quot;    =&gt; &quot;:clean&quot;,
-				                             &quot;post_id&quot;  =&gt; &quot;:post_id&quot;),
-				                       array(&quot;:tags&quot;    =&gt; rtrim($tags, &quot;,&quot;),
-				                             &quot;:clean&quot;   =&gt; rtrim($cleaned, &quot;,&quot;),
-				                             &quot;:post_id&quot; =&gt; $post-&gt;id));
+				                       array(&quot;tags&quot; =&gt; rtrim($tags, &quot;,&quot;),
+				                             &quot;clean&quot; =&gt; rtrim($cleaned, &quot;,&quot;),
+				                             &quot;post_id&quot; =&gt; $post-&gt;id));
 		}
 
 		public function import_wordpress_post($item, $post) {
@@ -389,12 +378,9 @@
 
 			if (!empty($tags) and !empty($cleaned))
 				SQL::current()-&gt;insert(&quot;tags&quot;,
-				                       array(&quot;tags&quot;     =&gt; &quot;:tags&quot;,
-				                             &quot;clean&quot;    =&gt; &quot;:clean&quot;,
-				                             &quot;post_id&quot;  =&gt; &quot;:post_id&quot;),
-				                       array(&quot;:tags&quot;    =&gt; rtrim($tags, &quot;,&quot;),
-				                             &quot;:clean&quot;   =&gt; rtrim($cleaned, &quot;,&quot;),
-				                             &quot;:post_id&quot; =&gt; $post-&gt;id));
+				                       array(&quot;tags&quot; =&gt; rtrim($tags, &quot;,&quot;),
+				                             &quot;clean&quot; =&gt; rtrim($cleaned, &quot;,&quot;),
+				                             &quot;post_id&quot; =&gt; $post-&gt;id));
 		}
 
 		public function import_movabletype_post($array, $post, $link) {
@@ -426,11 +412,7 @@
 			$clean_string = &quot;{{&quot;.implode(&quot;}},{{&quot;, array_values($tags)).&quot;}}&quot;;
 
 			$sql = SQL::current();
-			$sql-&gt;insert(&quot;tags&quot;, array(&quot;tags&quot; =&gt; &quot;:tags&quot;, &quot;clean&quot; =&gt; &quot;:clean&quot;, &quot;post_id&quot; =&gt; &quot;:post_id&quot;), array(
-			                 &quot;:tags&quot;    =&gt; $dirty_string,
-			                 &quot;:clean&quot;   =&gt; $clean_string,
-			                 &quot;:post_id&quot; =&gt; $post-&gt;id
-			             ));
+			$sql-&gt;insert(&quot;tags&quot;, array(&quot;tags&quot; =&gt; $dirty_string, &quot;clean&quot; =&gt; $clean_string, &quot;post_id&quot; =&gt; $post-&gt;id));
 		}
 
 		public function metaWeblog_getPost($struct, $post) {</diff>
      <filename>modules/tags/tags.php</filename>
    </modified>
    <modified>
      <diff>@@ -33,12 +33,9 @@
 		foreach ($tags as $post =&gt; $tag)
 			echo _f(&quot;Inserting tags for post #%s...&quot;, array($post), &quot;tags&quot;).
 			     test(SQL::current()-&gt;insert(&quot;tags&quot;,
-			                                 array(&quot;tags&quot; =&gt; &quot;:tags&quot;,
-			                                       &quot;clean&quot; =&gt; &quot;:clean&quot;,
-			                                       &quot;post_id&quot; =&gt; &quot;:post_id&quot;),
-			                                 array(&quot;:tags&quot; =&gt; implode(&quot;,&quot;, $tag[&quot;normal&quot;]),
-			                                       &quot;:clean&quot; =&gt; implode(&quot;,&quot;, $tag[&quot;clean&quot;]),
-			                                       &quot;:post_id&quot; =&gt; $post)));
+			                                 array(&quot;tags&quot; =&gt; implode(&quot;,&quot;, $tag[&quot;normal&quot;]),
+			                                       &quot;clean&quot; =&gt; implode(&quot;,&quot;, $tag[&quot;clean&quot;]),
+			                                       &quot;post_id&quot; =&gt; $post)));
 	}
 
 	update_tags_structure();</diff>
      <filename>modules/tags/upgrades.php</filename>
    </modified>
    <modified>
      <diff>@@ -352,12 +352,9 @@
 		foreach($groups as $name =&gt; $values)
 			echo _f(&quot;Restoring group \&quot;%s\&quot;...&quot;, array($name)).
 			     test(SQL::current()-&gt;insert(&quot;groups&quot;,
-			                                 array(&quot;id&quot; =&gt; &quot;:id&quot;,
-			                                       &quot;name&quot; =&gt; &quot;:name&quot;,
-			                                       &quot;permissions&quot; =&gt; &quot;:permissions&quot;),
-			                                 array(&quot;:id&quot; =&gt; $values[&quot;id&quot;],
-			                                       &quot;:name&quot; =&gt; $name,
-			                                       &quot;:permissions&quot; =&gt; $values[&quot;permissions&quot;])));
+			                                 array(&quot;id&quot; =&gt; $values[&quot;id&quot;],
+			                                       &quot;name&quot; =&gt; $name,
+			                                       &quot;permissions&quot; =&gt; $values[&quot;permissions&quot;])));
 	}
 
 	function add_permissions_table() {
@@ -399,10 +396,8 @@
 		foreach ($permissions as $id =&gt; $name)
 			echo _f(&quot;Inserting permission \&quot;%s\&quot;...&quot;, array($name)).
 			     test(SQL::current()-&gt;insert(&quot;permissions&quot;,
-			                                 array(&quot;id&quot; =&gt; &quot;:id&quot;,
-			                                       &quot;name&quot; =&gt; &quot;:name&quot;),
-			                                 array(&quot;:id&quot; =&gt; $id,
-			                                       &quot;:name&quot; =&gt; $name)));
+			                                 array(&quot;id&quot; =&gt; $id,
+			                                       &quot;name&quot; =&gt; $name)));
 	}
 
 	function add_sessions_table() {
@@ -474,10 +469,8 @@
 			$name = isset($permissions[$id]) ? $permissions[$id] : camelize($id, true);
 			echo _f(&quot;Restoring permission \&quot;%s\&quot;...&quot;, array($name)).
 			     test(SQL::current()-&gt;insert(&quot;permissions&quot;,
-			                                 array(&quot;id&quot; =&gt; &quot;:id&quot;,
-			                                       &quot;name&quot; =&gt; &quot;:name&quot;),
-			                                 array(&quot;:id&quot; =&gt; $id,
-			                                       &quot;:name&quot; =&gt; $name)));
+			                                 array(&quot;id&quot; =&gt; $id,
+			                                       &quot;name&quot; =&gt; $name)));
 		}
 
 	}</diff>
      <filename>upgrade.php</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>e32209c7141f2f645a35b6d7c1504aa021090540</id>
    </parent>
  </parents>
  <author>
    <name>Alex Suraci</name>
    <email>i.am@toogeneric.com</email>
  </author>
  <url>http://github.com/vito/chyrp/commit/91c8953ce1899035f5c572aa74ea6d4af54510a3</url>
  <id>91c8953ce1899035f5c572aa74ea6d4af54510a3</id>
  <committed-date>2008-09-01T20:47:05-07:00</committed-date>
  <authored-date>2008-09-01T20:47:05-07:00</authored-date>
  <message>More SQL interfacing refactoring.</message>
  <tree>7f42f66386346dab559ff742a3db858d8a1a635f</tree>
  <committer>
    <name>Alex Suraci</name>
    <email>i.am@toogeneric.com</email>
  </committer>
</commit>
