Age | Commit message (Collapse) | Author | Files | Lines |
|
if (substr($ip_segments[0], 0, 1) == '0')
to
if ($ip_segments[0][0] == '0')
|
|
-Derek
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
values we simply save
|
|
|
|
|
|
EE code, where AMP exists.
|
|
database, in the event that reserved characters are used in the name (bug report: 4915)
|
|
prefixed correctly.
|
|
prefixed correctly.
|
|
|
|
|
|
|
|
class variables would be set properly as needed before executing
|
|
|
|
Characters from halting app execution on environments which improperly set these as keys
|
|
report: #4436
|
|
|
|
|
|
|
|
main Driver. Fixed...
|
|
|
|
not being honored
|
|
|
|
|
|
should have been: $this->input->CI->_remove_invisible_characters($str);
|
|
|
|
included will be linked.
|
|
|
|
|
|
|
|
with different colors specified for highlight_string()
|
|
span tags.
Namely, removed the start and ending markers, as if the code being highlighted would be styled the same, PHP would put it all in the same <span>, so when we removed our own additions, it would remove the needed opening span style
|
|
sub-folder, I introducted a different bug (#5285), which this should fix
|
|
if ($this->cur_page > $this->num_links)
to
if ($this->cur_page > ($this-> num_links + 1))
so the "First" link only renders when the link for page 1 is now shown
|