summaryrefslogtreecommitdiffstats
path: root/lib/private/setup
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2016-01-12 15:02:16 +0100
committerThomas Müller <thomas.mueller@tmit.eu>2016-01-12 15:02:18 +0100
commit682821c71ed2af297170294632931be1ac769f25 (patch)
tree468a0f4ef756ec0aab4492064d030d66baae2850 /lib/private/setup
parent60fbab493478614de59e1c9b5272d39c78036c66 (diff)
downloadnextcloud-server-682821c71ed2af297170294632931be1ac769f25.tar.gz
nextcloud-server-682821c71ed2af297170294632931be1ac769f25.zip
Happy new year!
Diffstat (limited to 'lib/private/setup')
-rw-r--r--lib/private/setup/abstractdatabase.php2
-rw-r--r--lib/private/setup/mysql.php3
-rw-r--r--lib/private/setup/oci.php3
-rw-r--r--lib/private/setup/postgresql.php4
-rw-r--r--lib/private/setup/sqlite.php3
5 files changed, 10 insertions, 5 deletions
diff --git a/lib/private/setup/abstractdatabase.php b/lib/private/setup/abstractdatabase.php
index 1ec853c3b02..c97302ab252 100644
--- a/lib/private/setup/abstractdatabase.php
+++ b/lib/private/setup/abstractdatabase.php
@@ -4,7 +4,7 @@
* @author Joas Schilling <nickvergessen@owncloud.com>
* @author Thomas Müller <thomas.mueller@tmit.eu>
*
- * @copyright Copyright (c) 2015, ownCloud, Inc.
+ * @copyright Copyright (c) 2016, ownCloud, Inc.
* @license AGPL-3.0
*
* This code is free software: you can redistribute it and/or modify
diff --git a/lib/private/setup/mysql.php b/lib/private/setup/mysql.php
index 63ded13ede7..e6afad6033a 100644
--- a/lib/private/setup/mysql.php
+++ b/lib/private/setup/mysql.php
@@ -3,9 +3,10 @@
* @author Bart Visscher <bartv@thisnet.nl>
* @author Joas Schilling <nickvergessen@owncloud.com>
* @author Michael Göhler <somebody.here@gmx.de>
+ * @author Roeland Jago Douma <rullzer@owncloud.com>
* @author Thomas Müller <thomas.mueller@tmit.eu>
*
- * @copyright Copyright (c) 2015, ownCloud, Inc.
+ * @copyright Copyright (c) 2016, ownCloud, Inc.
* @license AGPL-3.0
*
* This code is free software: you can redistribute it and/or modify
diff --git a/lib/private/setup/oci.php b/lib/private/setup/oci.php
index d335df850cf..3d5aca96c1f 100644
--- a/lib/private/setup/oci.php
+++ b/lib/private/setup/oci.php
@@ -5,10 +5,11 @@
* @author Joas Schilling <nickvergessen@owncloud.com>
* @author Jörn Friedrich Dreyer <jfd@butonic.de>
* @author Morris Jobke <hey@morrisjobke.de>
+ * @author Roeland Jago Douma <rullzer@owncloud.com>
* @author Thomas Müller <thomas.mueller@tmit.eu>
* @author Victor Dubiniuk <dubiniuk@owncloud.com>
*
- * @copyright Copyright (c) 2015, ownCloud, Inc.
+ * @copyright Copyright (c) 2016, ownCloud, Inc.
* @license AGPL-3.0
*
* This code is free software: you can redistribute it and/or modify
diff --git a/lib/private/setup/postgresql.php b/lib/private/setup/postgresql.php
index 850551e794f..4c17de4b84d 100644
--- a/lib/private/setup/postgresql.php
+++ b/lib/private/setup/postgresql.php
@@ -3,9 +3,11 @@
* @author Bart Visscher <bartv@thisnet.nl>
* @author eduardo <eduardo@vnexu.net>
* @author Joas Schilling <nickvergessen@owncloud.com>
+ * @author Morris Jobke <hey@morrisjobke.de>
+ * @author Roeland Jago Douma <rullzer@owncloud.com>
* @author Thomas Müller <thomas.mueller@tmit.eu>
*
- * @copyright Copyright (c) 2015, ownCloud, Inc.
+ * @copyright Copyright (c) 2016, ownCloud, Inc.
* @license AGPL-3.0
*
* This code is free software: you can redistribute it and/or modify
diff --git a/lib/private/setup/sqlite.php b/lib/private/setup/sqlite.php
index ce6005620eb..61bc501fd75 100644
--- a/lib/private/setup/sqlite.php
+++ b/lib/private/setup/sqlite.php
@@ -1,8 +1,9 @@
<?php
/**
* @author Bart Visscher <bartv@thisnet.nl>
+ * @author Morris Jobke <hey@morrisjobke.de>
*
- * @copyright Copyright (c) 2015, ownCloud, Inc.
+ * @copyright Copyright (c) 2016, ownCloud, Inc.
* @license AGPL-3.0
*
* This code is free software: you can redistribute it and/or modify
"nv">$iconUrl = $this->urlGenerator->getAbsoluteURL($this->urlGenerator->imagePath('core', 'actions/mail.svg')); foreach ($entry->getEMailAddresses() as $address) { if (empty($address)) { // Skip continue; } $action = $this->actionFactory->newEMailAction($iconUrl, $address, $address); $entry->addAction($action); } } }