It would be best if the short form tags were enabled on the server. This would prevent CodeIgniter to rewrite your tags.
Locate your PHP.ini file in your PHP installation directory. Search for "short_open_tag". You will see it referenced a number of times under the "Language Options". Locate the uncommented one and change it to on.
The INI would look like this:
;;;;;;;;;;;;;;;;;;;;
; Language Options ;
;;;;;;;;;;;;;;;;;;;;
; Enable the PHP scripting language engine under Apache.
; http://php.net/engine
engine = On
; This directive determines whether or not PHP will recognize code between
; <? and ?> tags as PHP source which should be processed as such. It's been
; recommended for several years that you not use the short tag "short cut" and
; instead to use the full <?php and ?> tag combination. With the wide spread use
; of XML and use of these tags by other languages, the server can become easily
; confused and end up parsing the wrong code in the wrong context. But because
; this short cut has been a feature for such a long time, it's currently still
; supported for backwards compatibility, but we recommend you don't use them.
; Default Value: On
; Development Value: Off
; Production Value: Off
; http://php.net/short-open-tag
;short_open_tag = Off
; XAMPP for Linux is currently old fashioned
short_open_tag = On
<?=shorthand prior to PHP 5.4.". -1 for not actually reading. – Marc B Jul 18 '12 at 1:04