The branch, master has been updated via bc0a10b8319e42fe97c7d2e78409a4247271d43d (commit) from 3d007a60979b3c413cc43c55641ec9af12f5f0d9 (commit)
- Log ----------------------------------------------------------------- commit bc0a10b8319e42fe97c7d2e78409a4247271d43d Author: Michal Čihař mcihar@suse.cz Date: Thu Jul 21 11:19:22 2011 +0200
Add missing parameter names
-----------------------------------------------------------------------
Summary of changes: libraries/display_tbl.lib.php | 14 +++++++------- 1 files changed, 7 insertions(+), 7 deletions(-)
diff --git a/libraries/display_tbl.lib.php b/libraries/display_tbl.lib.php index b5457ce..09ba682 100644 --- a/libraries/display_tbl.lib.php +++ b/libraries/display_tbl.lib.php @@ -28,12 +28,12 @@ require_once './libraries/Index.class.php'; * the "display printable view" option. * Of course '0'/'1' means the feature won't/will be enabled. * - * @param string the synthetic value for display_mode (see a few - * lines above for explanations) - * @param integer the total number of rows returned by the SQL query - * without any programmatically appended "LIMIT" clause - * (just a copy of $unlim_num_rows if it exists, else - * computed inside this function) + * @param &$the_disp_mode string the synthetic value for display_mode (see a few + * lines above for explanations) + * @param &$the_total integer the total number of rows returned by the SQL query + * without any programmatically appended "LIMIT" clause + * (just a copy of $unlim_num_rows if it exists, else + * computed inside this function) * * @return array an array with explicit indexes for all the display * elements @@ -1391,7 +1391,7 @@ function PMA_displayTableBody(&$dt_result, &$is_display, $map, $analyzed_sql) { $is_field_truncated = false; //If the previous column had blob data, we need to reset the class // to $inline_edit_class - $class = 'data ' . $inline_edit_class . ' ' . $not_null_class . ' ' . $relation_class; //' ' . $alternating_color_class . + $class = 'data ' . $inline_edit_class . ' ' . $not_null_class . ' ' . $relation_class; //' ' . $alternating_color_class .
// See if this column should get highlight because it's used in the // where-query.
hooks/post-receive