aboutsummaryrefslogtreecommitdiff
path: root/actions
diff options
context:
space:
mode:
Diffstat (limited to 'actions')
-rw-r--r--actions/admin/menu_items.php2
-rw-r--r--actions/comments/add.php2
-rw-r--r--actions/comments/delete.php2
-rw-r--r--actions/entities/delete.php2
-rw-r--r--actions/friends/add.php2
-rw-r--r--actions/friends/addcollection.php2
-rw-r--r--actions/friends/deletecollection.php2
-rw-r--r--actions/friends/editcollection.php2
-rw-r--r--actions/friends/remove.php2
-rw-r--r--actions/import/opendd.php2
-rw-r--r--actions/likes/add.php2
-rw-r--r--actions/likes/delete.php2
-rw-r--r--actions/logout.php2
-rw-r--r--actions/notifications/settings/usersettings/save.php2
-rw-r--r--actions/plugins/settings/save.php2
-rw-r--r--actions/plugins/usersettings/save.php2
-rw-r--r--actions/user/default_access.php2
-rw-r--r--actions/user/language.php2
-rw-r--r--actions/user/name.php2
-rw-r--r--actions/user/password.php2
-rw-r--r--actions/user/passwordreset.php2
-rw-r--r--actions/user/spotlight.php2
-rw-r--r--actions/useradd.php2
-rw-r--r--actions/usersettings/save.php1
-rw-r--r--actions/widgets/add.php2
-rw-r--r--actions/widgets/reorder.php2
-rw-r--r--actions/widgets/save.php2
27 files changed, 0 insertions, 53 deletions
diff --git a/actions/admin/menu_items.php b/actions/admin/menu_items.php
index af38e96e7..7b27af3de 100644
--- a/actions/admin/menu_items.php
+++ b/actions/admin/menu_items.php
@@ -4,8 +4,6 @@
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
$featured_urls = get_input('featured_urls', array());
diff --git a/actions/comments/add.php b/actions/comments/add.php
index bce464fdb..84467168a 100644
--- a/actions/comments/add.php
+++ b/actions/comments/add.php
@@ -3,8 +3,6 @@
* Elgg add comment action
*
* @package Elgg
- * @author Curverider <curverider.co.uk>
- * @link http://elgg.org/
*/
// Make sure we're logged in; forward to the front page if not
diff --git a/actions/comments/delete.php b/actions/comments/delete.php
index fd8156dc3..47c988d51 100644
--- a/actions/comments/delete.php
+++ b/actions/comments/delete.php
@@ -3,8 +3,6 @@
* Elgg delete comment action
*
* @package Elgg
- * @author Curverider <curverider.co.uk>
- * @link http://elgg.org/
*/
// Ensure we're logged in
diff --git a/actions/entities/delete.php b/actions/entities/delete.php
index dab964ddd..61913e2f8 100644
--- a/actions/entities/delete.php
+++ b/actions/entities/delete.php
@@ -4,8 +4,6 @@
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
gatekeeper();
diff --git a/actions/friends/add.php b/actions/friends/add.php
index 345a86774..cb527f82b 100644
--- a/actions/friends/add.php
+++ b/actions/friends/add.php
@@ -4,8 +4,6 @@
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
// Ensure we are logged in
diff --git a/actions/friends/addcollection.php b/actions/friends/addcollection.php
index 6124b3496..e81fa34af 100644
--- a/actions/friends/addcollection.php
+++ b/actions/friends/addcollection.php
@@ -6,9 +6,7 @@
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
//must be logged in
diff --git a/actions/friends/deletecollection.php b/actions/friends/deletecollection.php
index d4e077a24..37a0346ab 100644
--- a/actions/friends/deletecollection.php
+++ b/actions/friends/deletecollection.php
@@ -6,9 +6,7 @@
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
// Make sure we're logged in (send us to the front page if not)
diff --git a/actions/friends/editcollection.php b/actions/friends/editcollection.php
index 4d346e823..9b0dd7d23 100644
--- a/actions/friends/editcollection.php
+++ b/actions/friends/editcollection.php
@@ -5,8 +5,6 @@
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
$collection_id = get_input('collection_id');
diff --git a/actions/friends/remove.php b/actions/friends/remove.php
index d3d362a92..3aa9e5981 100644
--- a/actions/friends/remove.php
+++ b/actions/friends/remove.php
@@ -4,8 +4,6 @@
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
// Ensure we are logged in
diff --git a/actions/import/opendd.php b/actions/import/opendd.php
index a9fbfb19c..96eb2bc05 100644
--- a/actions/import/opendd.php
+++ b/actions/import/opendd.php
@@ -7,8 +7,6 @@
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
// Safety
diff --git a/actions/likes/add.php b/actions/likes/add.php
index e7903a6e5..0cec18dc5 100644
--- a/actions/likes/add.php
+++ b/actions/likes/add.php
@@ -3,8 +3,6 @@
* Elgg add like action
*
* @package Elgg
- * @author Curverider <curverider.co.uk>
- * @link http://elgg.org/
*/
gatekeeper();
diff --git a/actions/likes/delete.php b/actions/likes/delete.php
index 78142e186..3e9ef32ad 100644
--- a/actions/likes/delete.php
+++ b/actions/likes/delete.php
@@ -3,8 +3,6 @@
* Elgg delete like action
*
* @package Elgg
- * @author Curverider <curverider.co.uk>
- * @link http://elgg.org/
*/
// Ensure we're logged in
diff --git a/actions/logout.php b/actions/logout.php
index de062edd4..98926d205 100644
--- a/actions/logout.php
+++ b/actions/logout.php
@@ -4,8 +4,6 @@
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
// Log out
diff --git a/actions/notifications/settings/usersettings/save.php b/actions/notifications/settings/usersettings/save.php
index 7df0e7e5c..da855c6b5 100644
--- a/actions/notifications/settings/usersettings/save.php
+++ b/actions/notifications/settings/usersettings/save.php
@@ -4,8 +4,6 @@
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
// Method
diff --git a/actions/plugins/settings/save.php b/actions/plugins/settings/save.php
index 6aa47b60e..24af3f5fa 100644
--- a/actions/plugins/settings/save.php
+++ b/actions/plugins/settings/save.php
@@ -4,8 +4,6 @@
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
$params = get_input('params');
diff --git a/actions/plugins/usersettings/save.php b/actions/plugins/usersettings/save.php
index 0219068e5..3e7f48f52 100644
--- a/actions/plugins/usersettings/save.php
+++ b/actions/plugins/usersettings/save.php
@@ -4,8 +4,6 @@
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
$params = get_input('params');
diff --git a/actions/user/default_access.php b/actions/user/default_access.php
index 845e1fbfc..ae489dcbe 100644
--- a/actions/user/default_access.php
+++ b/actions/user/default_access.php
@@ -4,8 +4,6 @@
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
global $CONFIG;
diff --git a/actions/user/language.php b/actions/user/language.php
index 83cc10dbd..79a583e68 100644
--- a/actions/user/language.php
+++ b/actions/user/language.php
@@ -4,8 +4,6 @@
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
gatekeeper();
diff --git a/actions/user/name.php b/actions/user/name.php
index 69a1b9681..acf83ab49 100644
--- a/actions/user/name.php
+++ b/actions/user/name.php
@@ -4,8 +4,6 @@
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
gatekeeper();
diff --git a/actions/user/password.php b/actions/user/password.php
index 25723c0b0..2af60dfb7 100644
--- a/actions/user/password.php
+++ b/actions/user/password.php
@@ -4,8 +4,6 @@
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
gatekeeper();
diff --git a/actions/user/passwordreset.php b/actions/user/passwordreset.php
index b801cbc22..230dfd68f 100644
--- a/actions/user/passwordreset.php
+++ b/actions/user/passwordreset.php
@@ -4,8 +4,6 @@
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
global $CONFIG;
diff --git a/actions/user/spotlight.php b/actions/user/spotlight.php
index d0ebb2226..f20d6bdd0 100644
--- a/actions/user/spotlight.php
+++ b/actions/user/spotlight.php
@@ -4,8 +4,6 @@
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
gatekeeper();
diff --git a/actions/useradd.php b/actions/useradd.php
index e92845cbb..c46b7fb96 100644
--- a/actions/useradd.php
+++ b/actions/useradd.php
@@ -4,8 +4,6 @@
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
admin_gatekeeper(); // Only admins can add a user
diff --git a/actions/usersettings/save.php b/actions/usersettings/save.php
index 87ba69cb0..83987486c 100644
--- a/actions/usersettings/save.php
+++ b/actions/usersettings/save.php
@@ -4,7 +4,6 @@
*
* @package Elgg
* @subpackage Core
- * @link http://elgg.org/
*/
global $CONFIG;
diff --git a/actions/widgets/add.php b/actions/widgets/add.php
index 66d133195..42d884a02 100644
--- a/actions/widgets/add.php
+++ b/actions/widgets/add.php
@@ -4,8 +4,6 @@
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
$guid = get_input('user');
diff --git a/actions/widgets/reorder.php b/actions/widgets/reorder.php
index 9398630ca..fbc8c5379 100644
--- a/actions/widgets/reorder.php
+++ b/actions/widgets/reorder.php
@@ -4,8 +4,6 @@
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
$owner = get_input('owner');
diff --git a/actions/widgets/save.php b/actions/widgets/save.php
index 01459f660..ca8a4dd9f 100644
--- a/actions/widgets/save.php
+++ b/actions/widgets/save.php
@@ -4,8 +4,6 @@
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
$guid = get_input('guid');