mirror of
https://github.com/moodle/moodle.git
synced 2025-02-10 10:41:57 +01:00
17 lines
279 B
PHP
17 lines
279 B
PHP
<?php //$Id$
|
|
|
|
function block_rss_client_upgrade($oldversion) {
|
|
/// This function does anything necessary to upgrade
|
|
/// older versions to match current functionality
|
|
|
|
global $CFG;
|
|
|
|
if ($oldversion < 2003111500) {
|
|
# Do something ...
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
?>
|