=== modified file 'addons/web_calendar/static/src/js/calendar.js'
--- addons/web_calendar/static/src/js/calendar.js	2013-03-01 09:35:20 +0000
+++ addons/web_calendar/static/src/js/calendar.js	2014-04-10 13:09:33 +0000
@@ -438,8 +438,10 @@
     get_range_domain: function() {
         var format = openerp.web.date_to_str,
             domain = this.last_search[0].slice(0);
-        domain.unshift([this.date_start, '>=', format(this.range_start.clone().addDays(-6))]);
         domain.unshift([this.date_start, '<=', format(this.range_stop.clone().addDays(6))]);
+        if (this.date_stop) {
+            domain.unshift([this.date_stop, '>=', format(this.range_start.clone().addDays(-6))]);
+        }
         return domain;
     },
     do_show: function () {

