Skip to content

Commit

Permalink
fix rons include_path problem (windows etc)
Browse files Browse the repository at this point in the history
git-svn-id: https://xerteonlinetoolkits.googlecode.com/svn/trunk@322 912cdd6b-5c7d-d5a7-a2ba-d0f0cdb91641
  • Loading branch information
Dave Goodwin committed Apr 29, 2012
1 parent 36c7cbe commit 5bbadb3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion library/autoloader.php
@@ -1,7 +1,7 @@
<?php

// Some ZF stuff has explicit require_once's in it... meh.
ini_set('include_path', ini_get('include_path') . ':' . dirname(__FILE__) );
ini_set('include_path', ini_get('include_path') . PATH_SEPARATOR . dirname(__FILE__) );


function _xerte_autoloader($class) {
Expand Down

0 comments on commit 5bbadb3

Please sign in to comment.