From b9b931748891268e9aedac81d62bda32d59e8a20 Mon Sep 17 00:00:00 2001 From: TheBnl Date: Wed, 18 Jun 2014 09:47:03 +0200 Subject: [PATCH] changed action 'view' to 'show' On the month jumper i encountered a problem when changing the date, the url would lead to a non existing page. In Calender.php i saw that 'show' was a allowed action so i presumed changing 'view' to 'show' would fix the issue. --- javascript/calendar_core.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/javascript/calendar_core.js b/javascript/calendar_core.js index a19ecf0..ec9f0e3 100755 --- a/javascript/calendar_core.js +++ b/javascript/calendar_core.js @@ -7,7 +7,7 @@ function navigateToDate(date) else query_string = ""; parts = loc.split(current_url_segment); - document.location = controller_url_segment+"view/"+date+query_string + document.location = controller_url_segment+"show/"+date+query_string } function zeroPad(num) {