When maintaining several zones, paging to find the right one is a drag.
The attached files (replacing then files with the same name) add a search box to the smbind interface, which allows to retrieve zones by name substring.
I have found one problem with this patch, it does not behave well with pagination. Luckily the fix is quite simple, all I had to do was edit zoneread.php and insert the following near the end.
files required for the search box
Logged In: YES
user_id=997838
Originator: NO
This sounds like a great idea, I have to check out your patch soon.
Logged In: NO
Works great. Made a few small changes and adapted to search records on the records list page, too.
This patch is invaluable! thank you.
I have found one problem with this patch, it does not behave well with pagination. Luckily the fix is quite simple, all I had to do was edit zoneread.php and insert the following near the end.
if (isset($_GET['zname'])) {
$smarty->assign("page_root", "./zonelist.php?zname=" . $_GET['zname'] . "&");
}
else {
$smarty->assign("page_root", "./zonelist.php?");
}