X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=js%2Finstall-data.js;h=b8493989c256010a60f1898bced4c24c2b0c3e1b;hb=6dcb879ba3abb21843503cacc65d1fe0848eb90f;hp=4c801ca69e6bea79967fdee19c2510a4ee93c48d;hpb=1d22c70e65e858422ee0d17a7612f4b5c0757a42;p=mailer.git diff --git a/js/install-data.js b/js/install-data.js index 4c801ca69e..b8493989c2 100644 --- a/js/install-data.js +++ b/js/install-data.js @@ -1,13 +1,8 @@ /** * JavaScript for installation menu data * -------------------------------------------------------------------- - * $Revision:: $ - * $Date:: $ - * $Tag:: 0.2.1-FINAL $ - * $Author:: $ - * -------------------------------------------------------------------- * Copyright (c) 2003 - 2009 by Roland Haeder - * Copyright (c) 2009 - 2012 by Mailer Developer Team + * Copyright (c) 2009 - 2016 by Mailer Developer Team * For more information visit: http://mxchange.org * * This program is free software; you can redistribute it and/or modify @@ -35,7 +30,8 @@ indexTranslation[2] = 'database_config'; indexTranslation[3] = 'smtp_config'; indexTranslation[4] = 'other_config'; indexTranslation[5] = 'extensions'; -indexTranslation[6] = 'overview'; +indexTranslation[6] = 'first_admin'; +indexTranslation[7] = 'overview'; // Always last ... indexTranslation[indexTranslation.length] = 'finish'; @@ -50,7 +46,8 @@ nextPage['base_data'] = 'database_config'; nextPage['database_config'] = 'smtp_config'; nextPage['smtp_config'] = 'other_config'; nextPage['other_config'] = 'extensions'; -nextPage['extensions'] = 'overview'; +nextPage['extensions'] = 'first_admin'; +nextPage['first_admin'] = 'overview'; nextPage['overview'] = 'finish'; // 'previous page' linking, key is current page, value is the previous page @@ -62,5 +59,6 @@ previousPage['database_config'] = 'base_data'; previousPage['smtp_config'] = 'database_config'; previousPage['other_config'] = 'smtp_config'; previousPage['extensions'] = 'other_config'; -previousPage['overview'] = 'extensions'; +previousPage['first_admin'] = 'extensions'; +previousPage['overview'] = 'first_admin'; previousPage['finish'] = 'overview';