Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/roundcube/roundcubemail.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAleksander Machniak <alec@alec.pl>2019-04-16 11:42:45 +0300
committerAleksander Machniak <alec@alec.pl>2019-04-16 11:42:45 +0300
commit57c67db029275dfc748d520440dce81066e28e7e (patch)
tree623eb9bf251041daed78a3528e1be7063fa629f0 /installer
parent69080457b1d499486967809cbbdc9f649d403d81 (diff)
Remove year(s) from copyright headers + some cleanup
Diffstat (limited to 'installer')
-rw-r--r--installer/check.php14
-rw-r--r--installer/client.js11
-rw-r--r--installer/config.php14
-rw-r--r--installer/index.php2
-rw-r--r--installer/test.php13
5 files changed, 47 insertions, 7 deletions
diff --git a/installer/check.php b/installer/check.php
index 3d2538191..0c5175cbb 100644
--- a/installer/check.php
+++ b/installer/check.php
@@ -1,5 +1,19 @@
<?php
+/**
+ +-----------------------------------------------------------------------+
+ | This file is part of the Roundcube Webmail client |
+ | |
+ | Copyright (C) The Roundcube Dev Team |
+ | |
+ | Licensed under the GNU General Public License version 3 or |
+ | any later version with exceptions for skins & plugins. |
+ | See the README file for a full license statement. |
+ +-----------------------------------------------------------------------+
+ | Author: Thomas Bruederli <roundcube@gmail.com> |
+ +-----------------------------------------------------------------------+
+*/
+
if (!class_exists('rcmail_install', false) || !is_object($RCI)) {
die("Not allowed! Please open installer/index.php instead.");
}
diff --git a/installer/client.js b/installer/client.js
index 2880ce34f..a2bdc89e2 100644
--- a/installer/client.js
+++ b/installer/client.js
@@ -2,13 +2,12 @@
+-----------------------------------------------------------------------+
| Roundcube installer client function |
| |
- | This file is part of the Roundcube web development suite |
- | Copyright (C) 2009-2012, The Roundcube Dev Team |
+ | This file is part of the Roundcube Webmail client |
+ | Copyright (C) The Roundcube Dev Team |
| |
| Licensed under the GNU General Public License version 3 or |
| any later version with exceptions for skins & plugins. |
| See the README file for a full license statement. |
- | |
+-----------------------------------------------------------------------+
| Author: Thomas Bruederli <roundcube@gmail.com> |
+-----------------------------------------------------------------------+
@@ -17,7 +16,7 @@
function toggleblock(id, link)
{
var block = document.getElementById(id);
-
+
return false;
}
@@ -28,14 +27,14 @@ function addhostfield()
var row = document.createElement('div');
var input = document.createElement('input');
var link = document.createElement('a');
-
+
input.name = '_default_host[]';
input.size = '30';
link.href = '#';
link.onclick = function() { removehostfield(this.parentNode); return false };
link.className = 'removelink';
link.innerHTML = 'remove';
-
+
row.appendChild(input);
row.appendChild(link);
container.appendChild(row);
diff --git a/installer/config.php b/installer/config.php
index 90fa9929c..a246dc749 100644
--- a/installer/config.php
+++ b/installer/config.php
@@ -1,5 +1,19 @@
<?php
+/**
+ +-----------------------------------------------------------------------+
+ | This file is part of the Roundcube Webmail client |
+ | |
+ | Copyright (C) The Roundcube Dev Team |
+ | |
+ | Licensed under the GNU General Public License version 3 or |
+ | any later version with exceptions for skins & plugins. |
+ | See the README file for a full license statement. |
+ +-----------------------------------------------------------------------+
+ | Author: Thomas Bruederli <roundcube@gmail.com> |
+ +-----------------------------------------------------------------------+
+*/
+
if (!class_exists('rcmail_install', false) || !is_object($RCI)) {
die("Not allowed! Please open installer/index.php instead.");
}
diff --git a/installer/index.php b/installer/index.php
index 56b4122fe..51963c462 100644
--- a/installer/index.php
+++ b/installer/index.php
@@ -5,7 +5,7 @@
| Roundcube Webmail setup tool |
| Version 1.4-git |
| |
- | Copyright (C) 2009-2017, The Roundcube Dev Team |
+ | Copyright (C) The Roundcube Dev Team |
| |
| This program is free software: you can redistribute it and/or modify |
| it under the terms of the GNU General Public License (with exceptions |
diff --git a/installer/test.php b/installer/test.php
index 5c503ee6e..40d7a39d8 100644
--- a/installer/test.php
+++ b/installer/test.php
@@ -1,4 +1,17 @@
<?php
+/*
+ +-----------------------------------------------------------------------+
+ | This file is part of the Roundcube Webmail client |
+ | |
+ | Copyright (C) The Roundcube Dev Team |
+ | |
+ | Licensed under the GNU General Public License version 3 or |
+ | any later version with exceptions for skins & plugins. |
+ | See the README file for a full license statement. |
+ +-----------------------------------------------------------------------+
+ | Author: Thomas Bruederli <roundcube@gmail.com> |
+ +-----------------------------------------------------------------------+
+*/
if (!class_exists('rcmail_install', false) || !is_object($RCI)) {
die("Not allowed! Please open installer/index.php instead.");