From da64c1aa4903dec2d26da0c8b055a7bb6d715440 Mon Sep 17 00:00:00 2001
From: Demian Katz <demian.katz@villanova.edu>
Date: Mon, 16 Jul 2012 10:03:08 -0400
Subject: [PATCH] Fixed typo.

---
 module/VuFind/src/VuFind/Db/Row/User.php | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/module/VuFind/src/VuFind/Db/Row/User.php b/module/VuFind/src/VuFind/Db/Row/User.php
index af8dc319457..58504c4ded0 100644
--- a/module/VuFind/src/VuFind/Db/Row/User.php
+++ b/module/VuFind/src/VuFind/Db/Row/User.php
@@ -131,7 +131,9 @@ class User extends RowGateway
             $select->join(
                 array('rt' => 'resource_tags'), 'tags.id = rt.tag_id', array()
             );
-            $select->join(array('r' => 'resource'), 'rt.resource_id = r.id', array())
+            $select->join(
+                array('r' => 'resource'), 'rt.resource_id = r.id', array()
+            );
             $select->join(
                 array('ur' => 'user_resource'), 'r.id = ur.resource_id', array()
             );
-- 
GitLab