Merge pull request #4393 from owncloud/fix_4326

provide correct path for require_once

* owncloud/fix_4326:
  use __DIR__ instead of realpath
  provide correct path for require_once
This commit is contained in:
Andreas Fischer 2013-08-14 21:20:53 +02:00
commit 75e9015b54
1 changed files with 1 additions and 1 deletions

View File

@ -1,6 +1,6 @@
<?php
if (!isset($_)) { //also provide standalone error page
require_once '../../../lib/base.php';
require_once __DIR__ . '/../../../lib/base.php';
$l = OC_L10N::get('files_encryption');