Off by one error.
Submitted by: Christian Weisgerber <naddy@unix-ag.uni-kl.de>
This commit is contained in:
parent
5a833061e0
commit
e892fe3c4d
Notes:
svn2git
2020-12-08 03:00:23 +00:00
svn path=/www/; revision=6463
1 changed files with 2 additions and 2 deletions
|
@ -28,7 +28,7 @@
|
||||||
# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||||
# SUCH DAMAGE.
|
# SUCH DAMAGE.
|
||||||
#
|
#
|
||||||
# $FreeBSD: www/en/cgi/cvsweb.cgi,v 1.36 1999/09/19 10:55:19 wosch Exp $
|
# $FreeBSD: www/en/cgi/cvsweb.cgi,v 1.37 2000/01/05 15:47:43 phantom Exp $
|
||||||
#
|
#
|
||||||
|
|
||||||
|
|
||||||
|
@ -154,7 +154,7 @@ if (!-d $cvsroot) {
|
||||||
push(@foo, $_);
|
push(@foo, $_);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if ($#foo > 1) {
|
if ($#foo >= 1) {
|
||||||
$intro .= "<p>\nThis script supports the following CVS trees:\n";
|
$intro .= "<p>\nThis script supports the following CVS trees:\n";
|
||||||
for($i = 0; $i <= $#foo; $i++) {
|
for($i = 0; $i <= $#foo; $i++) {
|
||||||
$intro .= qq{<a href="$scriptname?cvsroot=$foo[$i]">} .
|
$intro .= qq{<a href="$scriptname?cvsroot=$foo[$i]">} .
|
||||||
|
|
Loading…
Reference in a new issue