From f2c26bde1a6f490c1d8339928a7816580a5e4959 Mon Sep 17 00:00:00 2001 From: jgen Date: Tue, 18 Feb 2014 16:59:07 -0500 Subject: [PATCH] Update the copyright notices. --- install.php | 8 ++++++++ tests/setup_test_env.sh | 4 ++-- tests/test_install.php | 12 +++++++++--- 3 files changed, 19 insertions(+), 5 deletions(-) diff --git a/install.php b/install.php index a52154e5..da68d7d2 100644 --- a/install.php +++ b/install.php @@ -1,4 +1,12 @@ + * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2 + * @copyright Copyright (c) 2007-2014, Shish et al. + */ // TODO: Rewrite the entire installer and make it more readable. diff --git a/tests/setup_test_env.sh b/tests/setup_test_env.sh index 72d84889..ff239175 100644 --- a/tests/setup_test_env.sh +++ b/tests/setup_test_env.sh @@ -3,8 +3,8 @@ # Set up the Travis-CI test environment for Shimmie. # (this script should be run as root via sudo) # -# @copyright (c) 2014 jgen -# @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2 +# @author jgen +# @license http://opensource.org/licenses/GPL-2.0 GNU General Public License v2 # # Exit immediately if a command exits with a non-zero status. diff --git a/tests/test_install.php b/tests/test_install.php index f394a2db..6846bd3d 100644 --- a/tests/test_install.php +++ b/tests/test_install.php @@ -1,11 +1,17 @@ + * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2 + * @copyright Copyright (c) 2014, jgen + */ $options = getopt("d:"); $db = $options["d"]; -if (empty($db)){ - die("Error: need to specifiy a database for the test environment."); -} +if (empty($db)){ die("Error: need to specifiy a database for the test environment."); } define("_TRAVIS_DATABASE", $db);