~ubuntu-branches/debian/experimental/phpmyadmin/experimental

« back to all changes in this revision

Viewing changes to tbl_change.php

  • Committer: Package Import Robot
  • Author(s): Michal Čihař
  • Date: 2013-03-11 14:11:09 UTC
  • mfrom: (1.4.3)
  • Revision ID: package-import@ubuntu.com-20130311141109-c87yrlb1r20ahcsq
Tags: 4:3.5.7-1
New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
702
702
            if (! isset($table_fields[$i]['values'])) {
703
703
                $table_fields[$i]['values'] = array();
704
704
                foreach ($extracted_fieldspec['enum_set_values'] as $val) {
705
 
                    // Removes automatic MySQL escape format
706
 
                    $val = str_replace('\'\'', '\'', str_replace('\\\\', '\\', $val));
707
705
                    $table_fields[$i]['values'][] = array(
708
706
                        'plain' => $val,
709
707
                        'html'  => htmlspecialchars($val),