diff options
Diffstat (limited to 'templates/show_edit_access.inc.php')
-rw-r--r-- | templates/show_edit_access.inc.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/show_edit_access.inc.php b/templates/show_edit_access.inc.php index c4825d2f..14848946 100644 --- a/templates/show_edit_access.inc.php +++ b/templates/show_edit_access.inc.php @@ -42,14 +42,14 @@ <tr> <td><?php echo _('Start IP Address'); ?>:</td> <td> - <input type="text" name="start" value="<?php echo int2ip($access->start); ?>" size="20" maxlength="15" /> + <input type="text" name="start" value="<?php echo long2ip($access->start); ?>" size="20" maxlength="15" /> <span class="information">(0.0.0.0)</span> </td> </tr> <tr> <td><?php echo _('End IP Address'); ?>:</td> <td> - <input type="text" name="end" value="<?php echo int2ip($access->end); ?>" size="20" maxlength="15" /> + <input type="text" name="end" value="<?php echo long2ip($access->end); ?>" size="20" maxlength="15" /> <span class="information">(0.0.0.0)</span> </td> </tr> |