Updated the launchpad's include path adjustment to use a more cross platform solution.

This commit is contained in:
Josh Sherman 2010-11-28 13:39:40 -05:00
parent 98db206128
commit e13a7d93b3

View file

@ -1,6 +1,6 @@
<?php
ini_set('include_path', ini_get('include_path') . ':/path/to/pickles');
set_include_path(get_include_path() . PATH_SEPARATOR . '/path/to/pickles');
require_once 'pickles.php';
new Controller();