Compatibility with PHP 5.2.4 and enclosed ternary operation

Signed-off-by: Daniel Morris <daniel@honestempire.com>
diff --git a/system/core/Common.php b/system/core/Common.php
index 2a80487..e449dd2 100644
--- a/system/core/Common.php
+++ b/system/core/Common.php
@@ -490,7 +490,7 @@
 		}
 		else
 		{
-			header($server_protocol ?: 'HTTP/1.1'.' '.$code.' '.$text, TRUE, $code);
+			header(($server_protocol ? $server_protocol : 'HTTP/1.1').' '.$code.' '.$text, TRUE, $code);
 		}
 	}
 }