From 79cd6cefd5996031ebb93ffdac609d503553afb0 Mon Sep 17 00:00:00 2001
From: thomascube <thomas@roundcube.net>
Date: Tue, 01 Mar 2011 17:35:58 -0500
Subject: [PATCH] Simplify code
---
program/include/rcube_template.php | 3 +--
1 files changed, 1 insertions(+), 2 deletions(-)
diff --git a/program/include/rcube_template.php b/program/include/rcube_template.php
index a686ec8..6bd7295 100755
--- a/program/include/rcube_template.php
+++ b/program/include/rcube_template.php
@@ -75,12 +75,11 @@
$this->set_skin($this->config['skin']);
// add common javascripts
- $javascript = 'var '.JS_OBJECT_NAME.' = new rcube_webmail();';
+ $this->add_script('var '.JS_OBJECT_NAME.' = new rcube_webmail();', 'head_top');
// don't wait for page onload. Call init at the bottom of the page (delayed)
$this->add_script(JS_OBJECT_NAME.'.init();', 'docready');
- $this->add_script($javascript, 'head_top');
$this->scripts_path = 'program/js/';
$this->include_script('jquery-1.5.min.js');
$this->include_script('common.js');
--
Gitblit v1.9.1