changed a variable name 'isInstall' to 'isNotInstall'.

git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.3.2@11021 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
devjin 2012-08-10 04:43:03 +00:00
parent f9bc894b7e
commit 3f30376846

View file

@ -60,7 +60,7 @@
$oModuleModel = &getModel('module');
$args = $oModuleModel->getModuleConfig('member');
$isInstall = ($args === null);
$isNotInstall = ($args === null);
// Set the basic information
$args->enable_join = 'Y';
@ -85,7 +85,7 @@
if(!$args->signupForm || !is_array($args->signupForm))
{
$identifier = $isInstall ? 'email_address' : 'user_id';
$identifier = $isNotInstall ? 'email_address' : 'user_id';
$args->signupForm = $oMemberAdminController->createSignupForm($identifier);
$args->identifier = $identifier;