remove author names

This commit is contained in:
Dieter Adriaenssens
2010-06-28 20:36:12 +02:00
parent 4986ee0174
commit 16ed06531a
9 changed files with 3 additions and 17 deletions

View File

@@ -2,8 +2,6 @@
/* vim: set expandtab sw=4 ts=4 sts=4: */ /* vim: set expandtab sw=4 ts=4 sts=4: */
/** /**
* Set of functions used to run cookie based authentication. * Set of functions used to run cookie based authentication.
* Thanks to Piotr Roszatycki <d3xter at users.sourceforge.net> and
* Dan Wilson who built this patch for the Debian package.
* *
* @package phpMyAdmin-Auth-Cookie * @package phpMyAdmin-Auth-Cookie
* @version $Id$ * @version $Id$

View File

@@ -390,7 +390,7 @@ function Swekey_GetFastHalfRndToken()
$_SESSION['rnd-token-date'] = time(); $_SESSION['rnd-token-date'] = time();
if (! empty($cachefile)) if (! empty($cachefile))
{ {
// we unlink the file so no possible tempfile race attack (thanks Thijs) // we unlink the file so no possible tempfile race attack
unlink($cachefile); unlink($cachefile);
$file = fopen($cachefile , "x"); $file = fopen($cachefile , "x");
if ($file != FALSE) if ($file != FALSE)

View File

@@ -535,7 +535,7 @@ function PMA_getTableDef($db, $table, $crlf, $error_url, $show_dates = false, $a
$schema_create .= 'DROP TABLE IF EXISTS ' . PMA_backquote($table, $sql_backquotes) . ';' . $crlf; $schema_create .= 'DROP TABLE IF EXISTS ' . PMA_backquote($table, $sql_backquotes) . ';' . $crlf;
} }
// Steve Alberty's patch for complete table dump, // Complete table dump,
// Whether to quote table and fields names or not // Whether to quote table and fields names or not
if ($sql_backquotes) { if ($sql_backquotes) {
PMA_DBI_query('SET SQL_QUOTE_SHOW_CREATE = 1'); PMA_DBI_query('SET SQL_QUOTE_SHOW_CREATE = 1');

View File

@@ -41,8 +41,6 @@ function PMA_outBufferModeGet()
// any right frame file in phpMyAdmin will not be handled properly by // any right frame file in phpMyAdmin will not be handled properly by
// the browser. My fix was to check the ini file within the // the browser. My fix was to check the ini file within the
// PMA_outBufferModeGet() function. // PMA_outBufferModeGet() function.
//
// (Patch by Garth Gillespie, modified by Marc Delisle)
$mode = 0; $mode = 0;
} elseif (function_exists('ob_get_level') && ob_get_level() > 0) { } elseif (function_exists('ob_get_level') && ob_get_level() > 0) {
// If output buffering is enabled in php.ini it's not possible to // If output buffering is enabled in php.ini it's not possible to

View File

@@ -965,7 +965,6 @@ function PMA_foreignDropdown($disp_row, $foreign_field, $foreign_display, $data,
/** /**
* Gets foreign keys in preparation for a drop-down selector * Gets foreign keys in preparation for a drop-down selector
* Thanks to <markus@noga.de>
* *
* @uses PMA_Table::countRecords() * @uses PMA_Table::countRecords()
* @uses PMA_backquote() * @uses PMA_backquote()

View File

@@ -7,9 +7,6 @@
# #
# Takes input from STDIN, sends output to STDOUT # Takes input from STDIN, sends output to STDOUT
# #
# By Robin Johnson robbat2@users.sourceforge.net
# Many thanks to Patrick Lougheed pat@tfsb.org
#
while(<>) while(<>)
{ s/\$cfg(\w+)/\$cfg\[\'$1\'\]/g; { s/\$cfg(\w+)/\$cfg\[\'$1\'\]/g;

View File

@@ -197,7 +197,6 @@ if (isset($where_clause)) {
$rows = array_fill(0, $cfg['InsertRows'], false); $rows = array_fill(0, $cfg['InsertRows'], false);
} }
// <markus@noga.de>
// retrieve keys into foreign fields, if any // retrieve keys into foreign fields, if any
$foreigners = PMA_getForeigners($db, $table); $foreigners = PMA_getForeigners($db, $table);
@@ -507,7 +506,6 @@ foreach ($rows as $row_id => $vrow) {
// The function column // The function column
// ------------------- // -------------------
// Change by Bernard M. Piller <bernard@bmpsystems.com>
// We don't want binary data to be destroyed // We don't want binary data to be destroyed
// Note: from the MySQL manual: "BINARY doesn't affect how the column is // Note: from the MySQL manual: "BINARY doesn't affect how the column is
// stored or retrieved" so it does not mean that the contents is // stored or retrieved" so it does not mean that the contents is
@@ -831,7 +829,6 @@ foreach ($rows as $row_id => $vrow) {
</select> </select>
<?php <?php
} }
// Change by Bernard M. Piller <bernard@bmpsystems.com>
// We don't want binary data destroyed // We don't want binary data destroyed
elseif ($field['is_binary'] || $field['is_blob']) { elseif ($field['is_binary'] || $field['is_blob']) {
if (($cfg['ProtectBinary'] && $field['is_blob']) if (($cfg['ProtectBinary'] && $field['is_blob'])

View File

@@ -53,8 +53,7 @@ PMA_DBI_select_db($db);
/** /**
* Multi-tables printview thanks to Christophe Gesche from the "MySQL Form * Multi-tables printview
* Generator for PHPMyAdmin" (http://sourceforge.net/projects/phpmysqlformgen/)
*/ */
if (isset($selected_tbl) && is_array($selected_tbl)) { if (isset($selected_tbl) && is_array($selected_tbl)) {
$the_tables = $selected_tbl; $the_tables = $selected_tbl;

View File

@@ -95,7 +95,6 @@ if (!isset($param) || $param[0] == '') {
PMA_DBI_free_result($result); PMA_DBI_free_result($result);
unset($result, $type); unset($result, $type);
// <markus@noga.de>
// retrieve keys into foreign fields, if any // retrieve keys into foreign fields, if any
// check also foreigners even if relwork is FALSE (to get // check also foreigners even if relwork is FALSE (to get
// foreign keys from innodb) // foreign keys from innodb)
@@ -183,7 +182,6 @@ while (list($operator) = each($GLOBALS['cfg']['UnaryOperators'])) {
</td> </td>
<td> <td>
<?php <?php
// <markus@noga.de>
$field = $fields_list[$i]; $field = $fields_list[$i];
$foreignData = PMA_getForeignData($foreigners, $field, false, '', ''); $foreignData = PMA_getForeignData($foreigners, $field, false, '', '');