Go to the source code of this file.
elgg installer rewriteTest |
Initial value:=
function(
url, success_msg, nextURL) {
success:
function(data, status, xhr) {
if (data == 'success') {
$('.elgg-require-rewrite li').attr('class', 'pass');
$(
'.elgg-require-rewrite li').
html(
'<p>' + success_msg +
'</p>');
$('.elgg-install-nav a.elgg-state-disabled')
.removeClass('elgg-state-disabled')
.attr('href', nextURL);
}
}
});
}
elgg message elgg state success
if(!$site) if(!($site instanceof ElggSite)) $site url
Check the rewrite address for "success" and then allows the installation to proceed.
Definition at line 30 of file install.js.