Give a useful error message if no pages found.

This commit is contained in:
terry%netscape.com 1999-02-12 19:08:39 +00:00
Родитель fe712969ad
Коммит 516af911c0
1 изменённых файлов: 3 добавлений и 0 удалений

Просмотреть файл

@ -115,6 +115,9 @@ my @row = $query->fetchrow();
if ($row[0] > 10) {
Punt("Sorry; you selected $row[0] pages, but I can only graph up to 10.");
}
if ($row[0] < 1) {
Punt("Sorry; I could not find any pages matching what you specified. (Page names start with a leading /, like '/news.html'.)");
}