Clear display on session timeout even when unsaved changes are pending.
[openemr.git] / phpmyadmin / templates / startAndNumberOfRowsPanel.phtml
blobeb7cc1747b507dc206fa173582df4631f38cae86
1 <fieldset>
2     <div>
3         <label for="pos"><?php echo __('Start row:'); ?></label>
4         <input type="number" name="pos" min="0" required="required"
5             <?php if ($unlim_num_rows > 0) : ?>
6                 max="<?php echo ($unlim_num_rows - 1); ?>"
7             <?php endif; ?>
8             value="<?php echo htmlspecialchars($pos); ?>" />
10         <label for="session_max_rows"><?php echo __('Number of rows:'); ?></label>
11         <input type="number" name="session_max_rows" min="1"
12                value="<?php echo htmlspecialchars($rows); ?>" required="required" />
13         <input type="submit" name="submit" class="Go"
14                value="<?php echo __('Go'); ?>" />
15         <input type="hidden" name="sql_query"
16                value="<?php echo htmlspecialchars($sql_query); ?>" />
17         <input type="hidden" name="unlim_num_rows"
18                value="<?php echo htmlspecialchars($unlim_num_rows); ?>" />
19     </div>
20 </fieldset>