[phpcvsview-cvs-updates] phpcvsview phpcvs.php,1.18,1.19
Status: Pre-Alpha
Brought to you by:
bcheesem
From: Brian C. <bch...@us...> - 2005-01-08 04:57:12
|
Update of /cvsroot/phpcvsview/phpcvsview In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16555 Modified Files: phpcvs.php Log Message: Fixed error in phpcvs.php causing an undefined index relating to the Branch member. Index: phpcvs.php =================================================================== RCS file: /cvsroot/phpcvsview/phpcvsview/phpcvs.php,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** phpcvs.php 19 Dec 2004 04:51:37 -0000 1.18 --- phpcvs.php 8 Jan 2005 04:57:01 -0000 1.19 *************** *** 776,779 **** --- 776,788 ---- $LineProcessed = true; + // Start by initialising the array. + $this->FILES[$FileCount]["Head"] = ""; + $this->FILES[$FileCount]["Branch"] = ""; + $this->FILES[$FileCount]["Locks"] = ""; + $this->FILES[$FileCount]["Access"] = ""; + $this->FILES[$FileCount]["KeywordSubst"] = ""; + $this->FILES[$FileCount]["TotalRevs"] = ""; + $this->FILES[$FileCount]["SelectedRevs"] = ""; + $this->FILES[$FileCount]["Description"] = ""; } } |