Skip to content

Commit 5af1e66

Browse files
committed
Merge branch '1.11.x' of github.com:chamilo/chamilo-lms into 1.11.x
2 parents 7e895e2 + cccb247 commit 5af1e66

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

.htaccess

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,9 @@ RewriteRule ^service/(\d{1,})$ plugin/buycourses/src/service_information.php?ser
8787
RewriteRule ^lti/os$ plugin/ims_lti/outcome_service.php [L]
8888

8989
# Deny direct access to user my files
90+
# Note : since version 2.4.38-3 of Apache a security fix had a side effect that made redirection with space not to work.
91+
# To fix this issue we did not have a common syntaxis but it work with one of those 2 options :
92+
# changing at the end of the following line [QSA,L] for [QSA,L,B=\x20?] or for "[QSA,L,B= ?,BNP]"
9093
RewriteRule ^app/upload/users/([^/]+)/([^/]+)/my_files/(.*)$ main/social/download_my_files.php?user_id=$2&file=$3 [QSA,L]
9194

9295
# Deny access

main/template/default/catalog/course_catalog.tpl

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,9 @@
2727
{{ 'NumberOfMatchingCourses'|get_lang }} :
2828
<strong>{{ total_number_of_matching_courses }}</strong>
2929
</div>
30+
<div class="col-md-12 catalog-pagination-top">
31+
{{ pagination }}
32+
</div>
3033

3134
<div class="grid-courses row">
3235
{% for course in courses %}

0 commit comments

Comments
 (0)