remove author names, as discussed at the 2010 developer meeting and according to the book Producing Open Source Software

This commit is contained in:
Marc Delisle
2010-03-06 18:04:17 +00:00
parent 94b50c6f53
commit 819324ede6
94 changed files with 74 additions and 199 deletions

View File

@@ -195,8 +195,8 @@ while ($row = PMA_DBI_fetch_assoc($rowset)) {
$row['Null'] = 'NO';
}
$type = $row['Type'];
// reformat mysql query output - staybyte - 9. June 2001
// loic1: set or enum types: slashes single quotes inside options
// reformat mysql query output
// set or enum types: slashes single quotes inside options
if (preg_match('@^(set|enum)\((.+)\)$@i', $type, $tmp)) {
$tmp[2] = substr(preg_replace('@([^,])\'\'@', '\\1\\\'', ',' . $tmp[2]), 1);
$type = $tmp[1] . '(' . str_replace(',', ', ', $tmp[2]) . ')';