license and install changes

This commit is contained in:
Taras Machyshyn
2014-03-07 17:47:10 +02:00
parent e27901aec6
commit 456063fded
2 changed files with 8 additions and 8 deletions
+6 -6
View File
@@ -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. the "copyright" line and a pointer to where the full notice is found.
EspoCRM - Open Source CRM 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 it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or the Free Software Foundation, either version 3 of the License, or
(at your option) any later version. (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 but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details. GNU General Public License for more details.
You should have received a copy of the GNU General Public License 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. Also add information on how to contact you by electronic and paper mail.
If the program does terminal interaction, make it output a short If the program does terminal interaction, make it output a short
notice like this when it starts in an interactive mode: notice like this when it starts in an interactive mode:
EspoCRM Copyright (C) 2014 Yuri Kuznetsov, Taras Machyshyn, Alex Avramenko EspoCRM Copyright (C) 2014 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. EspoCRM comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
This is free software, and you are welcome to redistribute it This is free software, and you are welcome to redistribute it
under certain conditions; type `show c' for details. under certain conditions; type `show c' for details.
+2 -2
View File
@@ -500,12 +500,12 @@ InstallScript.prototype.checkAjaxPermUrl = function(url) {
var self = this; var self = this;
var urlAjax = '../'+url; var urlAjax = '../'+url;
var re = $.ajax({ var realJqXHR = $.ajax({
url: urlAjax, url: urlAjax,
type: "GET", type: "GET",
}) })
.always(function(data, textStatus, jqXHR){ .always(function(data, textStatus, jqXHR){
var status = jqXHR.status || 404; var status = jqXHR.status || realJqXHR.status || 404;
status += ''; status += '';
if (status == '200' || status == '401') { if (status == '200' || status == '401') {
var data = {'success': 1}; var data = {'success': 1};