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

« back to all changes in this revision

Viewing changes to theme/anomaly/version.php

  • Committer: Package Import Robot
  • Author(s): Thijs Kinkhorst
  • Date: 2013-07-19 08:52:46 UTC
  • mfrom: (1.1.10)
  • Revision ID: package-import@ubuntu.com-20130719085246-yebwditc2exoap2r
Tags: 2.5.1-1
* New upstream version: 2.5.1.
  - Fixes security issues:
    CVE-2013-2242 CVE-2013-2243 CVE-2013-2244 CVE-2013-2245
    CVE-2013-2246
* Depend on apache2 instead of obsolete apache2-mpm-prefork.
* Use packaged libphp-phpmailer (closes: #429339), adodb,
  HTMLPurifier, PclZip.
* Update debconf translations, thanks Salvatore Merone, Pietro Tollot,
  Joe Hansen, Yuri Kozlov, Holger Wansing, Américo Monteiro,
  Adriano Rafael Gomes, victory, Michał Kułach.
  (closes: #716972, #716986, #717080, #717108, #717278)

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
/**
18
18
 * Theme version info
19
19
 *
20
 
 * @package    theme
21
 
 * @subpackage anomaly
 
20
 * @package    theme_anomaly
22
21
 * @copyright  2010 Patrick Malley (http://newschoollearning.com/)
23
22
 * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
24
23
 */
25
24
 
26
25
defined('MOODLE_INTERNAL') || die;
27
26
 
28
 
$plugin->version   = 2011082400; // The current module version (Date: YYYYMMDDXX)
29
 
$plugin->requires  = 2011081700; // Requires this Moodle version
 
27
$plugin->version   = 2013050100; // The current module version (Date: YYYYMMDDXX)
 
28
$plugin->requires  = 2013050100; // Requires this Moodle version
30
29
$plugin->component = 'theme_anomaly'; // Full name of the plugin (used for diagnostics)
 
30
$plugin->dependencies = array(
 
31
    'theme_base'  => 2013050100,
 
32
);