From 3bf9c1e8a0b7ac986a03193fce7dea6e11c8ff4e Mon Sep 17 00:00:00 2001 From: jmalmsten-panopto Date: Tue, 22 Nov 2016 10:02:27 -0800 Subject: [PATCH] [TFS-38831] removed references to version in settings, internalversion already removed. (#37) --- settings.php | 6 ------ version.php | 2 +- 2 files changed, 1 insertion(+), 7 deletions(-) diff --git a/settings.php b/settings.php index fd9bcd0..0c6de2a 100644 --- a/settings.php +++ b/settings.php @@ -29,8 +29,6 @@ $numservers = get_config('block_panopto', 'server_number'); $numservers = isset($numservers) ? $numservers : 0; -$currversion = (isset($plugin) && isset($plugin->version)) ? $plugin->version : 0000000000; - $default = 0; if ($ADMIN->fulltree) { $_SESSION['numservers'] = $numservers + 1; @@ -135,10 +133,6 @@ ) ); - $versionnumber = '' . $currversion . '
'; - $settings->add(new admin_setting_heading('block_panopto_display_version', '', - 'Current version of the panopto block: ' . $versionnumber)); - $link = '' . get_string('block_global_add_courses', 'block_panopto') . ''; diff --git a/version.php b/version.php index 06ca3fa..1c3a21c 100644 --- a/version.php +++ b/version.php @@ -29,7 +29,7 @@ // Plugin version should normally be the same as the internal version. // If an admin wants to install with an older version number, however, set that here. -$plugin->version = 2016112107; +$plugin->version = 2016112108; // Requires this Moodle version - 2.7. $plugin->requires = 2014051200;