Skip to content
Snippets Groups Projects
Commit ad20cd1b authored by Matt Petro's avatar Matt Petro
Browse files

UWMOODLE-1288 Fix php notice during upgrade

parent 7d3d89c4
No related branches found
No related tags found
No related merge requests found
...@@ -7,7 +7,6 @@ ...@@ -7,7 +7,6 @@
* Author: Nick Koeppen * Author: Nick Koeppen
******************************************************************************/ ******************************************************************************/
require_once($CFG->dirroot."/enrol/wisc/lib.php");
class block_wisc_ra extends block_base { class block_wisc_ra extends block_base {
function init() { function init() {
...@@ -155,4 +154,3 @@ class block_wisc_ra extends block_base { ...@@ -155,4 +154,3 @@ class block_wisc_ra extends block_base {
return $sem . ' ' . $year; return $sem . ' ' . $year;
} }
} }
?>
...@@ -34,5 +34,3 @@ $capabilities = array( ...@@ -34,5 +34,3 @@ $capabilities = array(
), ),
); );
?>
\ No newline at end of file
...@@ -9,4 +9,3 @@ $string['editterm'] = 'Edit {$a} roster'; ...@@ -9,4 +9,3 @@ $string['editterm'] = 'Edit {$a} roster';
$string['wisc_ra:view'] = 'View WISC Roster Associations block'; $string['wisc_ra:view'] = 'View WISC Roster Associations block';
$string['nosectionsfound'] = 'No sections mapped.'; $string['nosectionsfound'] = 'No sections mapped.';
?>
...@@ -17,13 +17,10 @@ ...@@ -17,13 +17,10 @@
defined('MOODLE_INTERNAL') || die(); defined('MOODLE_INTERNAL') || die();
$plugin->version = 2013010601; $plugin->version = 2017032400;
$plugin->cron = 0;
$plugin->component = 'block_wisc_ra'; $plugin->component = 'block_wisc_ra';
$plugin->maturity = MATURITY_STABLE; $plugin->maturity = MATURITY_STABLE;
$plugin->release = 'Fall2012'; $plugin->release = 'Fall2012';
$plugin->dependencies = array( $plugin->dependencies = array(
'enrol_wisc' => 2012021401, 'enrol_wisc' => 2012021401,
); );
?>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment