Skip to content

Commit

Permalink
MDL-18474 - fix include link better... before tagging MERGED.
Browse files Browse the repository at this point in the history
  • Loading branch information
diml committed Mar 31, 2009
1 parent b950f12 commit df859bc
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion search/add.php
Expand Up @@ -25,7 +25,7 @@
}

/// makes inclusions of the Zend Engine more reliable
ini_set('include_path', $CFG->dirroot.DIRECTORY_SEPARATOR.'search'.DIRECTORY_SEPARATOR.PATH_SEPARATOR.ini_get('include_path'));
ini_set('include_path', $CFG->dirroot.DIRECTORY_SEPARATOR.'search'.PATH_SEPARATOR.ini_get('include_path'));

require_once($CFG->dirroot.'/search/lib.php');
require_once($CFG->dirroot.'/search/indexlib.php');
Expand Down
2 changes: 1 addition & 1 deletion search/delete.php
Expand Up @@ -25,7 +25,7 @@
}

/// makes inclusions of the Zend Engine more reliable
ini_set('include_path', $CFG->dirroot.DIRECTORY_SEPARATOR.'search'.DIRECTORY_SEPARATOR.PATH_SEPARATOR.ini_get('include_path'));
ini_set('include_path', $CFG->dirroot.DIRECTORY_SEPARATOR.'search'.PATH_SEPARATOR.ini_get('include_path'));

require_once($CFG->dirroot.'/search/lib.php');
require_once($CFG->dirroot.'/search/indexlib.php');
Expand Down
2 changes: 1 addition & 1 deletion search/indexer.php
Expand Up @@ -38,7 +38,7 @@

//require_once("debugging.php");

ini_set('include_path', $CFG->dirroot.DIRECTORY_SEPARATOR.'search'.DIRECTORY_SEPARATOR.PATH_SEPARATOR.ini_get('include_path'));
ini_set('include_path', $CFG->dirroot.DIRECTORY_SEPARATOR.'search'.PATH_SEPARATOR.ini_get('include_path'));

/// only administrators can index the moodle installation, because access to all pages is required

Expand Down
2 changes: 1 addition & 1 deletion search/indexersplash.php
Expand Up @@ -22,7 +22,7 @@

/// makes inclusions of the Zend Engine more reliable

ini_set('include_path', $CFG->dirroot.DIRECTORY_SEPARATOR.'search'.DIRECTORY_SEPARATOR.PATH_SEPARATOR.ini_get('include_path'));
ini_set('include_path', $CFG->dirroot.DIRECTORY_SEPARATOR.'search'.PATH_SEPARATOR.ini_get('include_path'));

/// check global search is enabled

Expand Down
2 changes: 1 addition & 1 deletion search/update.php
Expand Up @@ -25,7 +25,7 @@
}

/// makes inclusions of the Zend Engine more reliable
ini_set('include_path', $CFG->dirroot.DIRECTORY_SEPARATOR.'search'.DIRECTORY_SEPARATOR.PATH_SEPARATOR.ini_get('include_path'));
ini_set('include_path', $CFG->dirroot.DIRECTORY_SEPARATOR.'search'.PATH_SEPARATOR.ini_get('include_path'));

require_once($CFG->dirroot.'/search/lib.php');
require_once($CFG->dirroot.'/search/indexlib.php');
Expand Down

0 comments on commit df859bc

Please sign in to comment.