Skip to content

Commit 1f3d00f

Browse files
committed
Release version 3.2.0
1 parent 56f2cf1 commit 1f3d00f

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed

system/core/CodeIgniter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
* @var string
5757
*
5858
*/
59-
const CI_VERSION = '3.1.14';
59+
const CI_VERSION = '3.2.0';
6060

6161
/*
6262
* ------------------------------------------------------

system/core/Common.php

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,19 @@ function is_windows()
8989

9090
// ------------------------------------------------------------------------
9191

92+
if ( ! function_exists('is_linux')) {
93+
/**
94+
* Check if we're running on a Linux platform
95+
*/
96+
function is_linux()
97+
{
98+
$OS = strtoupper(substr(PHP_OS, 0, 3));
99+
return $OS !== 'WIN';
100+
}
101+
}
102+
103+
// ------------------------------------------------------------------------
104+
92105
if ( ! function_exists('is_really_writable'))
93106
{
94107
/**

0 commit comments

Comments
 (0)