Changeset 890 for trunk/index.php

Show
Ignore:
Timestamp:
10/25/2007 12:56:32 PM (13 months ago)
Author:
Geert
Message:

$application_path has become $kohana_application, thanks Martin Hall!

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/index.php

    r866 r890  
    7777(is_dir(APPPATH) AND is_dir(APPPATH.'/config')) or die 
    7878( 
    79         'Your <code>$application_path</code> does not exist. '. 
    80         'Set a valid <code>$application_path</code> in <tt>index.php</tt> and refresh the page.' 
     79        'Your <code>$kohana_application</code> directory does not exist. '. 
     80        'Set a valid <code>$kohana_application</code> in <tt>index.php</tt> and refresh the page.' 
    8181); 
    8282 
    8383(is_dir(SYSPATH) AND file_exists(SYSPATH.'/core/'.'Bootstrap'.EXT)) or die 
    8484( 
    85         'Your <code>$kohana_system</code> does not exist. '. 
     85        'Your <code>$kohana_system</code> directory does not exist. '. 
    8686        'Set a valid <code>$kohana_system</code> in <tt>index.php</tt> and refresh the page.' 
    8787);