mirror of
https://github.com/moodle/moodle.git
synced 2025-03-01 14:32:48 +01:00
11 lines
224 B
PHP
11 lines
224 B
PHP
<?php
|
|
|
|
function xmldb_block_feedback_install() {
|
|
global $DB;
|
|
|
|
/// Disable this block by default (because Feedback is not technically part of 2.0)
|
|
$DB->set_field('block', 'visible', 0, array('name'=>'feedback'));
|
|
|
|
}
|
|
|