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);