Browse Source

ISLANDORA-441 Improved docblock/comment; default is now 'Unix' for flexibility.

pull/441/head
Stefan Langer 11 years ago
parent
commit
4ef955174e
  1. 4
      islandora.module

4
islandora.module

@ -1806,7 +1806,7 @@ function islandora_islandora_metadata_display_info() {
* Determines the server's operating system. * Determines the server's operating system.
* *
* @return string * @return string
* * The name of the operating system being used.
*/ */
function islandora_os_check() { function islandora_os_check() {
// Determine if PHP is currently running on Windows. (The constant // Determine if PHP is currently running on Windows. (The constant
@ -1815,5 +1815,5 @@ function islandora_os_check() {
(strtolower(substr(PHP_OS, 0, 6)) == 'cygwin')) { (strtolower(substr(PHP_OS, 0, 6)) == 'cygwin')) {
return 'Windows'; return 'Windows';
} }
return 'Linux'; return 'Unix';
} }

Loading…
Cancel
Save