mirror of
https://github.com/moodle/moodle.git
synced 2025-02-20 16:15:54 +01:00
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");
|
|
|
|
?>
|