File tree Expand file tree Collapse file tree 2 files changed +14
-1
lines changed
Expand file tree Collapse file tree 2 files changed +14
-1
lines changed Original file line number Diff line number Diff line change 5656 * @var string
5757 *
5858 */
59- const CI_VERSION = '3.1.14 ' ;
59+ const CI_VERSION = '3.2.0 ' ;
6060
6161/*
6262 * ------------------------------------------------------
Original file line number Diff line number Diff 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+
92105if ( ! function_exists ('is_really_writable ' ))
93106{
94107 /**
You can’t perform that action at this time.
0 commit comments