From 88b505b024fef07ba119ad172e28601bd5725237 Mon Sep 17 00:00:00 2001 From: Vincent Zanotti Date: Sun, 15 Nov 2009 00:58:24 +0100 Subject: [PATCH] Fixes the way we serve grades.js & applis.js. Both used to be served as pure static content files. Signed-off-by: Vincent Zanotti --- core | 2 +- modules/profile.php | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/core b/core index 7f6619f..47a44ed 160000 --- a/core +++ b/core @@ -1 +1 @@ -Subproject commit 7f6619f92e410517bd2bebda355bc68f669b22a3 +Subproject commit 47a44ed04982abfee731ded1921cbf49f9926db9 diff --git a/modules/profile.php b/modules/profile.php index 016fd32..3e888c9 100644 --- a/modules/profile.php +++ b/modules/profile.php @@ -330,8 +330,8 @@ class ProfileModule extends PLModule // Build the page $page->addJsLink('ajax.js'); - $page->addJsLink('applis.js'); - $page->addJsLink('grades.js'); + $page->addJsLink('applis.js', false /* dynamic content */); + $page->addJsLink('grades.js', false /* dynamic content */); $page->addJsLink('profile.js'); $page->addJsLink('jquery.autocomplete.js'); $wiz = new PlWizard('Profil', PlPage::getCoreTpl('plwizard.tpl'), true, true); -- 2.1.4