~ubuntu-branches/ubuntu/trusty/phpmyadmin/trusty

« back to all changes in this revision

Viewing changes to libraries/insert_edit.lib.php

  • Committer: Package Import Robot
  • Author(s): Thijs Kinkhorst
  • Date: 2013-10-07 20:18:01 UTC
  • mfrom: (1.2.46)
  • Revision ID: package-import@ubuntu.com-20131007201801-l5l0ril5992p8sxz
Tags: 4:4.0.8-1
New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1737
1737
        $is_insert  = $_REQUEST['submit_type'] == 'insert'
1738
1738
                      || $_REQUEST['submit_type'] == 'showinsert'
1739
1739
                      || $_REQUEST['submit_type'] == 'insertignore';
1740
 
        $is_insertignore  = $_REQUEST['submit_type'] == 'insertignore';
1741
1740
    } else {
1742
1741
        // new row => use indexes
1743
1742
        $loop_array = array();
1746
1745
        }
1747
1746
        $using_key  = false;
1748
1747
        $is_insert  = true;
1749
 
        $is_insertignore = false;
1750
1748
    }
 
1749
    $is_insertignore  = $_REQUEST['submit_type'] == 'insertignore';
1751
1750
    return array($loop_array, $using_key, $is_insert, $is_insertignore);
1752
1751
}
1753
1752