Ticket #811 (closed Patch: fixed)

Opened 3 months ago

Last modified 3 months ago

kohana_system directory checking (index.php)

Reported by: bio Owned by: Shadowhand
Priority: trivial Milestone: 2.3
Component: Kohana Website/Server Version: SVN HEAD
Keywords: Cc:

Description

small update

index.php  2008-08-30 22:17:20.000000000 +0300
@@ -84,10 +84,10 @@
    'Set a valid <code>$kohana_application</code> in <tt>'.KOHANA.'</tt> and refresh the page.'
 );

-(is_dir(SYSPATH) AND file_exists(SYSPATH.'/core/'.'Bootstrap'.EXT)) or die
+(is_dir(SYSPATH) AND file_exists(SYSPATH.'bootstrap'.EXT)) or die
 (
    'Your <code>$kohana_system</code> directory does not exist. '.
    'Set a valid <code>$kohana_system</code> in <tt>'.KOHANA.'</tt> and refresh the page.'
 );

-require SYSPATH.'core/Bootstrap'.EXT;
\ No newline at end of file
+require SYSPATH.'bootstrap'.EXT;
\ No newline at end of file

Change History

Changed 3 months ago by Shadowhand

  • owner set to Shadowhand
  • status changed from new to accepted

Changed 3 months ago by Shadowhand

  • status changed from accepted to closed
  • resolution set to fixed

Fixed in r3400.

Note: See TracTickets for help on using tickets.