From 4ef955174e4bca7c6f9c7445abcececf6ca11249 Mon Sep 17 00:00:00 2001 From: Stefan Langer Date: Thu, 9 Jan 2014 11:11:45 -0500 Subject: [PATCH] ISLANDORA-441 Improved docblock/comment; default is now 'Unix' for flexibility. --- islandora.module | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/islandora.module b/islandora.module index 0337a96c..96789eba 100644 --- a/islandora.module +++ b/islandora.module @@ -1806,7 +1806,7 @@ function islandora_islandora_metadata_display_info() { * Determines the server's operating system. * * @return string - * + * The name of the operating system being used. */ function islandora_os_check() { // 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')) { return 'Windows'; } - return 'Linux'; + return 'Unix'; }