Update the copyright notices.

This commit is contained in:
jgen 2014-02-18 16:59:07 -05:00
parent dc8d1b4f49
commit f2c26bde1a
3 changed files with 19 additions and 5 deletions

View file

@ -1,4 +1,12 @@
<?php
/**
* Shimmie Installer
*
* @package Shimmie
* @author Shish et al. <webmaster at shishnet.org>
* @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.

View file

@ -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 <jeffgenovy@gmail.com>
# @license http://opensource.org/licenses/GPL-2.0 GNU General Public License v2
#
# Exit immediately if a command exits with a non-zero status.

View file

@ -1,11 +1,17 @@
<?php
/**
* SimpleTest integration with Travis CI for Shimmie
*
* @package Shimmie
* @author jgen <jeffgenovy@gmail.com>
* @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);