function renamed

This commit is contained in:
Spun Nakandala 2013-08-01 23:41:19 +05:30
parent 51ec7f2633
commit bc550013e3
2 changed files with 3 additions and 3 deletions

View File

@ -86,7 +86,7 @@ for ($i = 0; $i < $num_fields; $i++) {
if (! empty($regenerate)) {
// An error happened with previous inputs, so we will restore the data
// to embed it once again in this form.
$row = PMA_getRowDataForRestoration(
$row = PMA_getRowDataForRegeneration(
isset($submit_fulltext) ? $submit_fulltext : null
);

View File

@ -382,13 +382,13 @@ function PMA_getMoveColumns($db, $table)
}
/**
* Function to get row data for restoring previous when error occured.
* Function to get row data for regenerating previous when error occured.
*
* @param array $submit_fulltext submit full text
*
* @return array
*/
function PMA_getRowDataForRestoration($submit_fulltext)
function PMA_getRowDataForRegeneration($submit_fulltext)
{
$row['Field'] = isset($_REQUEST['field_name'][$i])
? $_REQUEST['field_name'][$i]