diff --git a/module/VuDL/src/VuDL/Connection/Fedora.php b/module/VuDL/src/VuDL/Connection/Fedora.php
index e4a4293edd639c32f43455c5f151b4a2725eb3c2..47466772346defaaf489c3d1838c5570c5367030 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 475a293e420841bf282f9a0e74dba921e9c26378..af9023b6b83f5ce2e77a67a4e4534cf0502401ae 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 aeac9d5339e741995cd2e056cd28f5641120c6ba..10ef4b9ece74b2d18295de7a7d4a5533cf59340c 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
+});