diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 0000000000000000000000000000000000000000..c7a460f64dcbeb7d296563863068dcc22b516f06
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,14 @@
+language: php
+php:
+  - 5.4
+
+env:
+  - VUFIND_HOME=$PWD VUFIND_LOCAL_DIR=$PWD/local
+
+before_script:
+  - pear install pear/PHP_CodeSniffer
+  - phpenv rehash
+
+script:
+  - phpcs --standard=PEAR --ignore=*/config/*,*/tests/* --extensions=php $PWD/module
+
diff --git a/build.xml b/build.xml
index f23ffdcca49a5c83d3ac81530a95e5c44b0b2429..275a064885a2cf9c2699abe3c4b7b2605cb743a8 100644
--- a/build.xml
+++ b/build.xml
@@ -22,7 +22,7 @@
   <property name="php-cs-fixers" value="no_blank_lines_before_namespaces,function_call_space,trailing_spaces,unused_use,lowercase_keywords,encoding,parenthesis,php_closing_tag,visibility,duplicate_semicolon,extra_empty_lines,no_blank_lines_after_class_opening,no_empty_lines_after_phpdocs,operators_spaces,spaces_before_semicolon,ternary_spaces,concat_with_spaces,short_array_syntax" />
 
 
-  <property name="version" value="2.4" />
+  <property name="version" value="2.4.1" />
 
   <!-- We only need the -p switch if the password is non-blank -->
   <if><not><equals arg1="${mysqlrootpass}" arg2="" /></not><then>
diff --git a/config/vufind/config.ini b/config/vufind/config.ini
index 8cf02b9dfb56aa4d36959225384064b7becdb4bc..2f274d751eef63232a04733a9e138a7437f3f64a 100644
--- a/config/vufind/config.ini
+++ b/config/vufind/config.ini
@@ -89,7 +89,7 @@ bookBagMaxSize = 100
 ; Display bulk items (export, save, etc.) and checkboxes on search result screens?
 showBulkOptions = false
 ; Generator value to display in an HTML header <meta> tag:
-generator = "VuFind 2.4"
+generator = "VuFind 2.4.1"
 
 ; This section allows you to configure the mechanism used for storing user
 ; sessions.  Available types: File, Memcache, Database.
diff --git a/local/config/vufind/config.ini b/local/config/vufind/config.ini
index 0d17e39c68ca3b13a90fb9cfceb1961aa2f683dc..bd145c91dc8994b0f5d19ad292cc366844bc3b0e 100644
--- a/local/config/vufind/config.ini
+++ b/local/config/vufind/config.ini
@@ -52,7 +52,7 @@ language        = de    ; default -- more options available in [Languages] below
 locale          = de_DE
 ; Set this to specify a default ISO 4217 currency code (used on the fines screen).
 ; If omitted, the default currency for the locale above will be used.
-;defaultCurrency = USD
+defaultCurrency = EUR
 ; Find valid timezone values here:
 ;   http://www.php.net/manual/en/timezones.php
 timezone        = "Europe/Berlin"
diff --git a/packages/DEBIAN/changelog b/packages/DEBIAN/changelog
index 5f64e67695c4ab7150fe293b99419863edc0605e..a4135b48cf1f40800119de963f2f7de6ae35517d 100644
--- a/packages/DEBIAN/changelog
+++ b/packages/DEBIAN/changelog
@@ -1,3 +1,9 @@
+vufind 2.4.1 distribution; urgency=low
+
+  * VuFind 2.4.1 release (see http://vufind.org/wiki/changelog for details) 
+
+ -- maintainer VuFind Project Administration Team <vufind-admins@lists.sourceforge.net>  Mo 25 May 2015 08:41:27 UTC
+
 vufind 2.4 distribution; urgency=low
 
   * VuFind 2.4 release (see http://vufind.org/wiki/changelog for details) 
diff --git a/packages/DEBIAN/control b/packages/DEBIAN/control
index 26f1fdc4be580cbf5b1a97192b9dc7f9d3075943..868112ab5a94390c0538601c6336e382a66aa0c4 100644
--- a/packages/DEBIAN/control
+++ b/packages/DEBIAN/control
@@ -1,5 +1,5 @@
 Package: vufind2
-Version: 2.4
+Version: 2.4.1
 Section: World Wide Web
 Priority: Optional
 Architecture: all
diff --git a/themes/bootstrap3/templates/Recommend/RandomRecommend.phtml b/themes/bootstrap3/templates/Recommend/RandomRecommend.phtml
index 2d85d3a51f6aa9578222b056194e76df21c6a122..9c83e95d80441db7dce458a4b32ef7ca7f414937 100644
--- a/themes/bootstrap3/templates/Recommend/RandomRecommend.phtml
+++ b/themes/bootstrap3/templates/Recommend/RandomRecommend.phtml
@@ -54,5 +54,6 @@
         <? endif; ?>
       </li>
     <? endforeach; ?>
+    </div>
   </ul>
 <?endif;?>