Skip to content

Commit c247149

Browse files
committed
1 parent 4cfff78 commit c247149

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

interface/lib/app.inc.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -167,6 +167,7 @@ function tpl_defaults() {
167167
} else {
168168
$this->tpl->setVar('logo', ' ');
169169
}
170+
$this->tpl->setVar('app_title',$conf["app_title"]);
170171

171172
}
172173

interface/lib/config.inc.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,9 @@
2929

3030
ini_set('register_globals',0);
3131

32+
$conf['app_title'] = "MyDNSConfig";
33+
$conf["app_version"] = "1.0.0";
34+
3235
$conf["rootpath"] = "F:\\server\\www\\ispconfig3\\interface";
3336
//$conf["rootpath"] = "D:\\www\\ispconfig3\\interface";
3437
//$conf["rootpath"] = "/home/www/ispconfig3/web/cms";

interface/sql/ispconfig3db.sql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -533,7 +533,7 @@ CREATE TABLE `sys_user` (
533533
-- Daten für Tabelle `sys_user`
534534
--
535535

536-
INSERT INTO `sys_user` (`userid`, `sys_userid`, `sys_groupid`, `sys_perm_user`, `sys_perm_group`, `sys_perm_other`, `username`, `passwort`, `modules`, `startmodule`, `app_theme`, `typ`, `active`, `name`, `vorname`, `unternehmen`, `strasse`, `ort`, `plz`, `land`, `email`, `url`, `telefon`, `fax`, `language`, `groups`, `default_group`) VALUES (1, 1, 0, 'riud', 'riud', '', 'admin', '21232f297a57a5a743894a0e4a801fc3', 'admin,designer,sites', 'admin', 'default', 'admin', 1, '', 'Administrator', '', '', '', '', '', '', '', '', '', 'en', '1,2', 0);
536+
INSERT INTO `sys_user` (`userid`, `sys_userid`, `sys_groupid`, `sys_perm_user`, `sys_perm_group`, `sys_perm_other`, `username`, `passwort`, `modules`, `startmodule`, `app_theme`, `typ`, `active`, `name`, `vorname`, `unternehmen`, `strasse`, `ort`, `plz`, `land`, `email`, `url`, `telefon`, `fax`, `language`, `groups`, `default_group`) VALUES (1, 1, 0, 'riud', 'riud', '', 'admin', '21232f297a57a5a743894a0e4a801fc3', 'admin,designer,sites,dns', 'admin', 'default', 'admin', 1, '', 'Administrator', '', '', '', '', '', '', '', '', '', 'en', '1,2', 0);
537537

538538
--
539539
-- Table structure for table `rr`
@@ -596,4 +596,4 @@ CREATE TABLE `soa` (
596596
-- Dumping data for table `soa`
597597
--
598598

599-
-- --------------------------------------------------------
599+
-- --------------------------------------------------------

interface/web/themes/default/templates/main.tpl.htm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
22
<html>
33
<head>
4-
<title>ISPConfig</title>
4+
<title><tmpl_var name="app_title"></title>
55
<meta http-equiv="Content-Type" content="{tmpl_var name='html_content_encoding'}">
66
<link href="themes/{tmpl_var name="theme"}/style.css" rel="stylesheet" type="text/css">
77
<script language= "JavaScript">

0 commit comments

Comments
 (0)