Skip to content

Commit

Permalink
Fix salesagility#8688 - Fatal error on install with MySQL 8
Browse files Browse the repository at this point in the history
  • Loading branch information
mattlorimer committed Oct 28, 2020
1 parent d4a8dce commit cc7d3fc
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions modules/Audit/vardefs.php
Original file line number Diff line number Diff line change
@@ -1,14 +1,11 @@
<?php
if (!defined('sugarEntry') || !sugarEntry) {
die('Not A Valid Entry Point');
}
/**
*
* SugarCRM Community Edition is a customer relationship management program developed by
* SugarCRM, Inc. Copyright (C) 2004-2013 SugarCRM Inc.
*
* SuiteCRM is an extension to SugarCRM Community Edition developed by SalesAgility Ltd.
* Copyright (C) 2011 - 2018 SalesAgility Ltd.
* Copyright (C) 2011 - 2020 SalesAgility Ltd.
*
* This program is free software; you can redistribute it and/or modify it under
* the terms of the GNU Affero General Public License version 3 as published by the
Expand Down Expand Up @@ -41,4 +38,10 @@
* display the words "Powered by SugarCRM" and "Supercharged by SuiteCRM".
*/

$dictionary['Audit'] = array();
if (!defined('sugarEntry') || !sugarEntry) {
die('Not A Valid Entry Point');
}

$dictionary['Audit'] = [
'table' => 'does_not_exist',
];

0 comments on commit cc7d3fc

Please sign in to comment.