summaryrefslogtreecommitdiff
path: root/actions
diff options
context:
space:
mode:
authorZach Copley <zach@status.net>2009-10-12 14:07:00 -0700
committerZach Copley <zach@status.net>2009-10-12 14:07:00 -0700
commit7fcaffdf86755a444ad9c24046161cb8a428c613 (patch)
tree43e2a5d8c332a6284e05c9f348d054b308bbd606 /actions
parente071a8cbffd8eaf63f2d92e15edc2f6f25d9c984 (diff)
Took out some unnecessary intializations
Diffstat (limited to 'actions')
-rw-r--r--actions/apifavoritecreate.php2
-rw-r--r--actions/apifavoritedestroy.php1
-rw-r--r--actions/apifriendshipscreate.php1
-rw-r--r--actions/apifriendshipsdestroy.php1
-rw-r--r--actions/apifriendshipsshow.php1
-rw-r--r--actions/apiusershow.php2
6 files changed, 0 insertions, 8 deletions
diff --git a/actions/apifavoritecreate.php b/actions/apifavoritecreate.php
index 1b05eb95c..2a185f607 100644
--- a/actions/apifavoritecreate.php
+++ b/actions/apifavoritecreate.php
@@ -46,7 +46,6 @@ require_once INSTALLDIR.'/lib/apiauth.php';
class ApiFavoriteCreateAction extends ApiAuthAction
{
- var $user = null;
var $notice = null;
/**
@@ -141,7 +140,6 @@ class ApiFavoriteCreateAction extends ApiAuthAction
}
}
-
/**
* Notify the author of the favorite that the user likes their notice
*
diff --git a/actions/apifavoritedestroy.php b/actions/apifavoritedestroy.php
index aac866d7e..f954a5076 100644
--- a/actions/apifavoritedestroy.php
+++ b/actions/apifavoritedestroy.php
@@ -47,7 +47,6 @@ require_once INSTALLDIR.'/lib/apiauth.php';
class ApiFavoriteDestroyAction extends ApiAuthAction
{
- var $user = null;
var $notice = null;
/**
diff --git a/actions/apifriendshipscreate.php b/actions/apifriendshipscreate.php
index 6c44d7961..fe4e9e9a2 100644
--- a/actions/apifriendshipscreate.php
+++ b/actions/apifriendshipscreate.php
@@ -47,7 +47,6 @@ require_once INSTALLDIR.'/lib/apiauth.php';
class ApiFriendshipsCreateAction extends ApiAuthAction
{
- var $user = null;
var $other = null;
/**
diff --git a/actions/apifriendshipsdestroy.php b/actions/apifriendshipsdestroy.php
index a15f202aa..f0f6c062b 100644
--- a/actions/apifriendshipsdestroy.php
+++ b/actions/apifriendshipsdestroy.php
@@ -47,7 +47,6 @@ require_once INSTALLDIR.'/lib/apiauth.php';
class ApiFriendshipsDestroyAction extends ApiAuthAction
{
- var $user = null;
var $other = null;
/**
diff --git a/actions/apifriendshipsshow.php b/actions/apifriendshipsshow.php
index 8850496c7..c5aed238f 100644
--- a/actions/apifriendshipsshow.php
+++ b/actions/apifriendshipsshow.php
@@ -45,7 +45,6 @@ require_once INSTALLDIR.'/lib/apibareauth.php';
class ApiFriendshipsShowAction extends ApiBareAuthAction
{
- var $user = null;
var $source = null;
var $target = null;
diff --git a/actions/apiusershow.php b/actions/apiusershow.php
index d07040a43..db942d1a5 100644
--- a/actions/apiusershow.php
+++ b/actions/apiusershow.php
@@ -46,8 +46,6 @@ require_once INSTALLDIR.'/lib/api.php';
class ApiUserShowAction extends ApiAction
{
- var $user = null;
-
/**
* Take arguments for running
*