mirror of
https://github.com/moodle/moodle.git
synced 2025-08-07 18:06:51 +02:00
10 lines
224 B
PHP
10 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'));
|
|
|
|
}
|
|
|