~ubuntu-branches/ubuntu/trusty/moodle/trusty

« back to all changes in this revision

Viewing changes to mod/url/index.php

  • Committer: Package Import Robot
  • Author(s): Thijs Kinkhorst
  • Date: 2014-01-21 13:40:52 UTC
  • mfrom: (1.1.13)
  • Revision ID: package-import@ubuntu.com-20140121134052-ym2qvsp2cd9vq0p6
Tags: 2.5.4-1
* New upstream release, fixing security issues:
  - MSA-14-0001 Config passwords visibility issue [CVE-2014-0008]
  - MSA-14-0002 Group constraints lacking in "login as" [CVE-2014-0009]
  - MSA-14-0003 CSRF vulnerability in profile fields [CVE-2014-0010]
* Move /var/lib/moodle directory into package.
* Revert back to bundled yui3. Unfortunately, version in Debian and
  of upstream are not compatible (closes: #735312).

Show diffs side-by-side

added added

removed removed

Lines of Context:
37
37
 
38
38
$strurl       = get_string('modulename', 'url');
39
39
$strurls      = get_string('modulenameplural', 'url');
40
 
$strsectionname  = get_string('sectionname', 'format_'.$course->format);
41
40
$strname         = get_string('name');
42
41
$strintro        = get_string('moduleintro');
43
42
$strlastmodified = get_string('lastmodified');
59
58
$table->attributes['class'] = 'generaltable mod_index';
60
59
 
61
60
if ($usesections) {
 
61
    $strsectionname = get_string('sectionname', 'format_'.$course->format);
62
62
    $table->head  = array ($strsectionname, $strname, $strintro);
63
63
    $table->align = array ('center', 'left', 'left');
64
64
} else {