aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Marien Fressinaud <dev@marienfressinaud.fr> 2015-01-16 23:26:29 +0100
committerGravatar Marien Fressinaud <dev@marienfressinaud.fr> 2015-01-16 23:26:29 +0100
commitf3d74b59e8957dfa7793125aaf71f47e088008d4 (patch)
treeb9421c605cbf4820ab2999905b81f268364656ab
parent9483c6cf6759364678ca37d3f8379d35c72a8675 (diff)
Fix a bug when default view is the global one.
If default view is "global", the popup tried to get articles on the default view which was… "global"! Articles are present on the "normal" view instead.
-rw-r--r--app/views/index/global.phtml2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/index/global.phtml b/app/views/index/global.phtml
index cf95bd0f5..0ffa3bc54 100644
--- a/app/views/index/global.phtml
+++ b/app/views/index/global.phtml
@@ -13,7 +13,7 @@
<?php
$url_base = array(
'c' => 'index',
- 'a' => 'index',
+ 'a' => 'normal',
'params' => Minz_Request::params()
);