mirror of
https://github.com/moodle/moodle.git
synced 2025-01-19 14:27:22 +01:00
0baafc173a
There are multiple issues with Moodle files containing empty or blank lines (lines consisting of white spaces or tabs only) and/or white space before or after the PHP open and close tags, notably with config.php and theme files.
18 lines
228 B
PHP
18 lines
228 B
PHP
<?PHP
|
|
|
|
// version $Id$
|
|
|
|
// List of CAS langages.
|
|
|
|
// You can add langages in /CAS/langage.
|
|
|
|
// Please send them to http://esup-phpcas.sourceforge.net
|
|
|
|
$CASLANGUAGES = array (
|
|
|
|
"english" => "English",
|
|
|
|
"french" => "French");
|
|
|
|
?>
|