From edd958836e3cef5e93ae3ee59b4db398f8f86cad Mon Sep 17 00:00:00 2001
From: Tom Needham <needham.thomas@gmail.com>
Date: Wed, 5 Oct 2011 16:32:01 +0100
Subject: [PATCH] Moved addScript and addStyle calls to app.php

---
 apps/files_texteditor/appinfo/app.php | 6 ++++--
 files/index.php                       | 3 ---
 2 files changed, 4 insertions(+), 5 deletions(-)

diff --git a/apps/files_texteditor/appinfo/app.php b/apps/files_texteditor/appinfo/app.php
index 6c10fe4470..15d79933a1 100644
--- a/apps/files_texteditor/appinfo/app.php
+++ b/apps/files_texteditor/appinfo/app.php
@@ -1,4 +1,6 @@
 <?php
-//load the required js file
-OC_UTIL::addScript('files_texteditor','editor');
+//load the required files
+OC_Util::addStyle( 'files_texteditor', 'style' );
+OC_Util::addScript( 'files_texteditor', 'editor');
+OC_Util::addScript( 'files_texteditor', 'aceeditor/ace');
 ?>
diff --git a/files/index.php b/files/index.php
index 67324d4df2..aa081d4880 100644
--- a/files/index.php
+++ b/files/index.php
@@ -30,12 +30,9 @@ OC_Util::checkLoggedIn();
 
 // Load the files we need
 OC_Util::addStyle( "files", "files" );
-OC_Util::addStyle( 'files_texteditor', 'style' );
 OC_Util::addScript( "files", "files" );
 OC_Util::addScript( 'files', 'filelist' );
 OC_Util::addScript( 'files', 'fileactions' );
-OC_Util::addScript( 'files_texteditor', 'editor');
-OC_Util::addScript( 'files_texteditor', 'aceeditor/ace');
 if(!isset($_SESSION['timezone'])){
 	OC_Util::addScript( 'files', 'timezone' );
 }
-- 
GitLab