[phpcvsview-cvs-updates] phpcvsview func_DirListing.php,1.10,1.11
Status: Pre-Alpha
Brought to you by:
bcheesem
From: Sijis A. <si...@us...> - 2005-02-04 09:41:43
|
Update of /cvsroot/phpcvsview/phpcvsview In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9873 Modified Files: func_DirListing.php Log Message: - removed reference to $env['mod_path'] in function calls Index: func_DirListing.php =================================================================== RCS file: /cvsroot/phpcvsview/phpcvsview/func_DirListing.php,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** func_DirListing.php 3 Feb 2005 23:50:36 -0000 1.10 --- func_DirListing.php 4 Feb 2005 09:41:35 -0000 1.11 *************** *** 44,48 **** // Add the quick link navigation bar. ! echo GetQuickLinkBar($env['mod_path']); // Start the output for the table. --- 44,48 ---- // Add the quick link navigation bar. ! echo GetQuickLinkBar(); // Start the output for the table. *************** *** 51,67 **** // Do we need the "Back" operation. if (strlen($env['mod_path']) > 2) { ! addParentDirectory($env['mod_path']); } // Display the folders within the table. ! addFolders($env['mod_path'], $CVSServer->FOLDERS); // Display the Modules if we have them. if ($Modules !== false) { ! addModules($env['mod_path'], $Modules); } // Display the files within the table. ! addFiles($env['mod_path'], $CVSServer->FILES); // Close off our HTML table. --- 51,67 ---- // Do we need the "Back" operation. if (strlen($env['mod_path']) > 2) { ! addParentDirectory(); } // Display the folders within the table. ! addFolders($CVSServer->FOLDERS); // Display the Modules if we have them. if ($Modules !== false) { ! addModules($Modules); } // Display the files within the table. ! addFiles($CVSServer->FILES); // Close off our HTML table. |