Commit 0f1c5977 authored by Sebastian Kummer's avatar Sebastian Kummer

Merge pull request #264 in ZP/z-push from bugfix/ZP-943-make-shared-memory-default-ipc to develop

* commit '08b1a1c7':
  ZP-943 Need to prepend the REAL_BASE_PATH when checking for IPC provider file.
parents 14ab36ed 08b1a1c7
......@@ -77,7 +77,7 @@ abstract class InterProcessData {
$this->provider_class = defined('IPC_PROVIDER') ? IPC_PROVIDER : false;
if (!$this->provider_class) {
foreach(self::$providerLoadOrder as $provider => $file) {
if (file_exists($file) && class_exists($provider)) {
if (file_exists(REAL_BASE_PATH . $file) && class_exists($provider)) {
$this->provider_class = $provider;
break;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment