Took out some unnecessary intializations

This commit is contained in:
Zach Copley 2009-10-12 14:07:00 -07:00
parent e071a8cbff
commit 7fcaffdf86
6 changed files with 0 additions and 8 deletions

View File

@ -46,7 +46,6 @@ require_once INSTALLDIR.'/lib/apiauth.php';
class ApiFavoriteCreateAction extends ApiAuthAction class ApiFavoriteCreateAction extends ApiAuthAction
{ {
var $user = null;
var $notice = null; var $notice = null;
/** /**
@ -141,7 +140,6 @@ class ApiFavoriteCreateAction extends ApiAuthAction
} }
} }
/** /**
* Notify the author of the favorite that the user likes their notice * Notify the author of the favorite that the user likes their notice
* *

View File

@ -47,7 +47,6 @@ require_once INSTALLDIR.'/lib/apiauth.php';
class ApiFavoriteDestroyAction extends ApiAuthAction class ApiFavoriteDestroyAction extends ApiAuthAction
{ {
var $user = null;
var $notice = null; var $notice = null;
/** /**

View File

@ -47,7 +47,6 @@ require_once INSTALLDIR.'/lib/apiauth.php';
class ApiFriendshipsCreateAction extends ApiAuthAction class ApiFriendshipsCreateAction extends ApiAuthAction
{ {
var $user = null;
var $other = null; var $other = null;
/** /**

View File

@ -47,7 +47,6 @@ require_once INSTALLDIR.'/lib/apiauth.php';
class ApiFriendshipsDestroyAction extends ApiAuthAction class ApiFriendshipsDestroyAction extends ApiAuthAction
{ {
var $user = null;
var $other = null; var $other = null;
/** /**

View File

@ -45,7 +45,6 @@ require_once INSTALLDIR.'/lib/apibareauth.php';
class ApiFriendshipsShowAction extends ApiBareAuthAction class ApiFriendshipsShowAction extends ApiBareAuthAction
{ {
var $user = null;
var $source = null; var $source = null;
var $target = null; var $target = null;

View File

@ -46,8 +46,6 @@ require_once INSTALLDIR.'/lib/api.php';
class ApiUserShowAction extends ApiAction class ApiUserShowAction extends ApiAction
{ {
var $user = null;
/** /**
* Take arguments for running * Take arguments for running
* *