Skip to content

Commit 91e0ee4

Browse files
committed
[smarcet]
* fix for mysqldb 5.7
1 parent d9a8b1f commit 91e0ee4

5 files changed

Lines changed: 1261 additions & 2 deletions

File tree

openstack/_config/config.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,13 @@ SSViewer:
1414
MySQLDatabase:
1515
connection_charset: 'utf8'
1616
web_server_time_zone: 'America/Chicago'
17+
sql_mode: 'ANSI'
18+
19+
MySQLDatabase56:
20+
sql_mode: 'ANSI'
21+
22+
MySQLDatabase57:
23+
sql_mode: 'REAL_AS_FLOAT,PIPES_AS_CONCAT,ANSI_QUOTES,IGNORE_SPACE'
1724

1825
SiteTree:
1926
nested_urls: true

openstack/code/Company.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ public function getIdentifier() {
7878
private static $plural_name = 'Companies';
7979

8080
private static $summary_fields = array(
81-
'Name' => 'Company',
81+
'Name' => 'Company',
8282
'MemberLevel' => 'MemberLevel'
8383
);
8484

0 commit comments

Comments
 (0)