phpmyadmin/js/designer/objects.js
William Desportes 782d9449a2
Fix #12900 - Designer page saving gives error
Fixes: #12900
Signed-off-by: William Desportes <williamdes@wdes.fr>
2019-04-26 23:45:46 +02:00

20 lines
564 B
JavaScript

function PDFPage (db_name, page_descr, tbl_cords) {
// no dot set the auto increment before put() in the database
// issue #12900
// this.pg_nr = null;
this.db_name = db_name;
this.page_descr = page_descr;
this.tbl_cords = tbl_cords;
}
function TableCoordinate (db_name, table_name, pdf_pg_nr, x, y) {
// no dot set the auto increment before put() in the database
// issue #12900
// this.id = null;
this.db_name = db_name;
this.table_name = table_name;
this.pdf_pg_nr = pdf_pg_nr;
this.x = x;
this.y = y;
}