From dc48c09cb233935307cda2663a7816195a364ce4 Mon Sep 17 00:00:00 2001
From: Chris Hallberg <crhallberg@gmail.com>
Date: Tue, 14 Oct 2014 09:46:06 -0400
Subject: [PATCH] Checkstyles live at the conference.

---
 module/VuDL/src/VuDL/Connection/Fedora.php                  | 6 +++---
 module/VuFind/src/VuFindTest/Search/TestHarness/Results.php | 4 ++--
 themes/bootstrap3/js/common.js                              | 6 +++---
 3 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/module/VuDL/src/VuDL/Connection/Fedora.php b/module/VuDL/src/VuDL/Connection/Fedora.php
index e4a4293edd6..47466772346 100644
--- a/module/VuDL/src/VuDL/Connection/Fedora.php
+++ b/module/VuDL/src/VuDL/Connection/Fedora.php
@@ -105,9 +105,9 @@ class Fedora extends AbstractBase
     /**
      * Return the content of a datastream.
      *
-     * @param string $id     Record id
-     * @param string $stream Name of stream to retrieve
-     *
+     * @param string  $id         Record id
+     * @param string  $stream     Name of stream to retrieve
+     * @param boolean $justStream Do not append /content and return from url as is
      * @return string
      */
     public function getDatastreamContent($id, $stream, $justStream = false)
diff --git a/module/VuFind/src/VuFindTest/Search/TestHarness/Results.php b/module/VuFind/src/VuFindTest/Search/TestHarness/Results.php
index 475a293e420..af9023b6b83 100644
--- a/module/VuFind/src/VuFindTest/Search/TestHarness/Results.php
+++ b/module/VuFind/src/VuFindTest/Search/TestHarness/Results.php
@@ -107,7 +107,7 @@ class Results extends \VuFind\Search\Base\Results
     /**
      * Get a fake record driver
      *
-     * @var string $id ID to use
+     * @param string $id ID to use
      *
      * @return RecordDriver
      */
@@ -119,4 +119,4 @@ class Results extends \VuFind\Search\Base\Results
         }
         return $this->driverCache[$id];
     }
-}
\ No newline at end of file
+}
diff --git a/themes/bootstrap3/js/common.js b/themes/bootstrap3/js/common.js
index aeac9d5339e..10ef4b9ece7 100644
--- a/themes/bootstrap3/js/common.js
+++ b/themes/bootstrap3/js/common.js
@@ -304,7 +304,7 @@ $(document).ready(function() {
             q:query,
             method:'getACSuggestions',
             searcher:searcher['searcher'],
-            type:$('#searchForm_type').val(),
+            type:$('#searchForm_type').val()
           },
           dataType:'json',
           success: function(json) {
@@ -318,7 +318,7 @@ $(document).ready(function() {
               cb([]);
             }
           }
-        })
+        });
       }
     }
   );
@@ -430,4 +430,4 @@ $(document).ready(function() {
     var parts = this.href.split('/');
     return Lightbox.get(parts[parts.length-3],'Save',{id:$(this).attr('id')});
   });
-});
\ No newline at end of file
+});
-- 
GitLab