$CFG->os (= PHP_OS) to handle it centrally. Also, although not critical,
it should be recommended to replace all the current uses of PHP_OS to the
new variables. See bug 4968.
(http://moodle.org/bugs/bug.php?op=show&bugid=4968)
}
+/// Calculate and set $CFG->ostype to be used everywhere. Possible values are:
+/// - WINDOWS: for any Windows flavour.
+/// - UNIX: for the rest
+/// Also, $CFG->os can continue being used if more specialization is required
+if (stristr(PHP_OS, 'win') && !stristr(PHP_OS, 'darwin')) {
+ $CFG->ostype = 'WINDOWS';
+} else {
+ $CFG->ostype = 'UNIX';
+}
+$CFG->os = PHP_OS;
/// Set language/locale of printed times. If user has chosen a language that
/// that is different from the site language, then use the locale specified