mirror of
https://github.com/moodle/moodle.git
synced 2025-02-19 07:41:02 +01:00
11 lines
422 B
PHP
11 lines
422 B
PHP
<?php
|
|
/*
|
|
* This file displays some variable for the flashupgrade.swf
|
|
* the variable contain the translated message to displayed into the flashupgrade.swf ("Please update you flash ...")
|
|
* NOTE: flash can load variable from html (variable1=value&variable2=value2)
|
|
*/
|
|
require('../../config.php');
|
|
require_login();
|
|
echo 'alertmessage='.get_string('flashupgrademessage').'&linkmessage='.get_string('flashlinkmessage');
|
|
?>
|