[phpcvsview-cvs-updates] phpcvsview func_FileAnnotation.php,1.9,1.10
Status: Pre-Alpha
Brought to you by:
bcheesem
From: Sijis A. <si...@us...> - 2005-02-04 09:42:31
|
Update of /cvsroot/phpcvsview/phpcvsview In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10048 Modified Files: func_FileAnnotation.php Log Message: - removed unecessary $env['script_path'] recalculation - removed reference to $env['mod_path'] in function calls Index: func_FileAnnotation.php =================================================================== RCS file: /cvsroot/phpcvsview/phpcvsview/func_FileAnnotation.php,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** func_FileAnnotation.php 3 Feb 2005 23:50:36 -0000 1.9 --- func_FileAnnotation.php 4 Feb 2005 09:42:22 -0000 1.10 *************** *** 16,23 **** global $config, $env, $lang; - // Calculate the path from the $env['script_name'] variable. - $env['script_path'] = substr($env['script_name'], 0, strrpos($env['script_name'], '/')); - $env['script_path'] = (empty($env['script_path']))? '/' : $env['script_path']; - // Create our CVS connection object and set the required properties. $CVSServer = new CVS_PServer($env['CVSSettings']['cvsroot'], $env['CVSSettings']['server'], $env['CVSSettings']['username'], $env['CVSSettings']['password']); --- 16,19 ---- *************** *** 41,44 **** --- 37,42 ---- } + echo GetQuickLinkBar($lang['annotate_history'], false, true); + // Start the output for the table. echo '<hr />'."\n"; |