license and install changes
This commit is contained in:
+6
-6
@@ -632,28 +632,28 @@ state the exclusion of warranty; and each file should have at least
|
||||
the "copyright" line and a pointer to where the full notice is found.
|
||||
|
||||
EspoCRM - Open Source CRM
|
||||
Copyright (C) 2014 Yuri Kuznetsov, Taras Machyshyn, Alex Avramenko
|
||||
Copyright (C) 2014 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
EspoCRM is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
EspoCRM is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
along with EspoCRM. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
Also add information on how to contact you by electronic and paper mail.
|
||||
|
||||
If the program does terminal interaction, make it output a short
|
||||
notice like this when it starts in an interactive mode:
|
||||
|
||||
EspoCRM Copyright (C) 2014 Yuri Kuznetsov, Taras Machyshyn, Alex Avramenko
|
||||
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
|
||||
EspoCRM Copyright (C) 2014 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko
|
||||
EspoCRM comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
|
||||
This is free software, and you are welcome to redistribute it
|
||||
under certain conditions; type `show c' for details.
|
||||
|
||||
|
||||
@@ -500,12 +500,12 @@ InstallScript.prototype.checkAjaxPermUrl = function(url) {
|
||||
var self = this;
|
||||
|
||||
var urlAjax = '../'+url;
|
||||
var re = $.ajax({
|
||||
var realJqXHR = $.ajax({
|
||||
url: urlAjax,
|
||||
type: "GET",
|
||||
})
|
||||
.always(function(data, textStatus, jqXHR){
|
||||
var status = jqXHR.status || 404;
|
||||
var status = jqXHR.status || realJqXHR.status || 404;
|
||||
status += '';
|
||||
if (status == '200' || status == '401') {
|
||||
var data = {'success': 1};
|
||||
|
||||
Reference in New Issue
Block a user