Move functions.php to legacy

This file should really be properly namespaced etc!
This commit is contained in:
Roeland Jago Douma 2016-05-12 13:32:02 +02:00
parent cba4875e4d
commit eb79b83831
No known key found for this signature in database
GPG Key ID: 1E152838F164D13B
3 changed files with 2 additions and 2 deletions

View File

@ -36,7 +36,7 @@
use OC\TemplateLayout;
require_once __DIR__.'/../template/functions.php';
require_once __DIR__.'/template/functions.php';
/**
* This class provides the templates for ownCloud.

View File

@ -423,7 +423,7 @@ abstract class TestCase extends \PHPUnit_Framework_TestCase {
*/
protected function assertTemplate($expectedHtml, $template, $vars = []) {
require_once __DIR__.'/../../lib/private/template/functions.php';
require_once __DIR__.'/../../lib/private/legacy/template/functions.php';
$requestToken = 12345;
$theme = new OC_Defaults();