Skip to content
This repository was archived by the owner on Sep 10, 2021. It is now read-only.

Commit 6b66205

Browse files
author
Jamie Snape
committed
Correct misspelling of connection action
1 parent a96afa7 commit 6b66205

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

core/controllers/InstallController.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -300,8 +300,8 @@ function step3Action()
300300
}
301301
} // end method step2Action
302302

303-
/** ajax function which tests connectivity to a db */
304-
public function testconnexionAction()
303+
/** AJAX function which tests connectivity to a database */
304+
public function testconnectionAction()
305305
{
306306
$this->requireAjaxRequest();
307307
$this->_helper->layout->disableLayout();

core/public/js/install/install.step2.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@
6868

6969
$.ajax({
7070
type: "POST",
71-
url: json.global.webroot+'/install/testconnexion',
71+
url: json.global.webroot+'/install/testconnection',
7272
data: {type: obj.find('[name=type]').val(), host: obj.find('[name=host]').val(), username: obj.find('[name=username]').val(),
7373
password: obj.find('[name=password]').val(),dbname: obj.find('[name=dbname]').val(),port: obj.find('[name=port]').val()},
7474
cache:false,

0 commit comments

Comments
 (0)