root/trunk/htaccess

User picture

Author: m4rw3r

Revision: 279 («Previous)


File Size: 463 Bytes

(June 30, 2008 15:36 UTC) Almost 4 years ago

A bit more on the migrate controller
Thanks to the inparo, elitemedia and the Linkster guidelines, I've added a lot more empty lines and comments to IgnitedQuery to improve readability :P
A bit more on the IgnitedQuery unit test
select() now has a switch for protect_identifiers
unions of arrays didn't work as expected, switched to array_merge()
added select_count(), is it possible?
_select_func() also has this protect_identifiers switch
or_where_not_in() was missing
Started on INSERT

 
Show/hide line numbers
<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /IgnitedRecord
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.*)$ index.php/$1 [L]
</IfModule>

<IfModule !mod_rewrite.c>
    # If we don't have mod_rewrite installed, all 404's
    # can be sent to index.php, and everything works as normal.
    # Submitted by: ElliotHaughin

    ErrorDocument 404 /IgnitedRecord/index.php
</IfModule>