Changeset afe50ae in github


Ignore:
Timestamp:
May 26, 2008 6:42:20 AM (5 years ago)
Author:
till <till@…>
Branches:
master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.6, release-0.7, release-0.8
Children:
e345457
Parents:
c0e3583
Message:
  • minor cs fixes
File:
1 edited

Legend:

Unmodified
Added
Removed
  • installer/index.php

    r47124c22 rafe50ae  
    11<?php 
    2  
    32ini_set('error_reporting', E_ALL&~E_NOTICE); 
    43ini_set('display_errors', 1); 
    54 
    65define('INSTALL_PATH', realpath(dirname(__FILE__) . '/../').'/'); 
    7 $include_path  = INSTALL_PATH . 'program/lib' . PATH_SEPARATOR . INSTALL_PATH . 'program' . PATH_SEPARATOR . INSTALL_PATH . 'program/include' . PATH_SEPARATOR . ini_get('include_path'); 
     6$include_path  = INSTALL_PATH . 'program/lib' . PATH_SEPARATOR; 
     7$include_path .= INSTALL_PATH . 'program' . PATH_SEPARATOR; 
     8$include_path .= INSTALL_PATH . 'program/include' . PATH_SEPARATOR; 
     9$include_path .= ini_get('include_path'); 
     10 
    811set_include_path($include_path); 
    912 
     
    2326  include_once $filename. '.php'; 
    2427} 
    25  
    2628?> 
    2729<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
Note: See TracChangeset for help on using the changeset viewer.