Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
…itMarketPlace/trunk@17 ca2d9673-a5a9-ba4d-935a-6d6421dafb50
  • Loading branch information
hertsch committed Feb 7, 2012
1 parent f2af03a commit 435913a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions class.frontend.php
Original file line number Diff line number Diff line change
Expand Up @@ -586,8 +586,8 @@ public function accountLoginDlg() {

$form = new formFrontend();
$params = $form->getParams();
$params[formFrontend::param_form] = $dlg;
$params[formFrontend::param_return] = true;
$params['form'] = $dlg;
$params['return'] = true;
$form->setParams($params);

$result = $form->action();
Expand Down Expand Up @@ -617,8 +617,8 @@ public function accountAccountDlg() {
$dlg = $dbMarketCfg->getValue(dbMarketCfg::cfgFormDlgAccount);
$form = new formFrontend();
$params = $form->getParams();
$params[formFrontend::param_form] = $dlg;
$params[formFrontend::param_return] = true;
$params['form'] = $dlg;
$params['return'] = true;
$form->setParams($params);
return $form->action();
} // accountAccountDlg()
Expand Down

0 comments on commit 435913a

Please sign in to comment.