mirror of
https://github.com/moodle/moodle.git
synced 2025-08-09 10:56:56 +02:00

Thanks to Luca Bösch and Matteo Scaramuccia that detected these 2 minor, but ugly details in core version files: 1) Adding comments pointed to versions (3.x, 20190801...) is not recommended, they easily come outdated. 2) Using plugin->release in core is no sense. Core plugins belong to the core release. This commit just gets rid of them. That's all.
29 lines
1.2 KiB
PHP
29 lines
1.2 KiB
PHP
<?php
|
|
// This file is part of Moodle - http://moodle.org/
|
|
//
|
|
// Moodle is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// Moodle is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
/**
|
|
* TinyMCE text editor integration version file.
|
|
*
|
|
* @package editor_tinymce
|
|
* @copyright 2009 Petr Skoda (http://skodak.org)
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
*/
|
|
|
|
defined('MOODLE_INTERNAL') || die();
|
|
|
|
$plugin->version = 2020061500; // The current plugin version (Date: YYYYMMDDXX)
|
|
$plugin->requires = 2020060900; // Requires this Moodle version
|
|
$plugin->component = 'editor_tinymce'; // Full name of the plugin (used for diagnostics)
|