From: Vincent Zanotti Date: Sat, 14 Nov 2009 23:58:24 +0000 (+0100) Subject: Fixes the way we serve grades.js & applis.js. Both used to be served as pure static... X-Git-Tag: xorg/1.0.0~249^2~11 X-Git-Url: http://git.polytechnique.org/?a=commitdiff_plain;h=88b505b024fef07ba119ad172e28601bd5725237;p=platal.git Fixes the way we serve grades.js & applis.js. Both used to be served as pure static content files. Signed-off-by: Vincent Zanotti --- 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);