Changeset 782
- Timestamp:
- 04/21/06 10:18:17 (3 years ago)
- Location:
- trunk
- Files:
-
- 1 added
- 6 modified
-
Changes (modified) (1 diff)
-
MANIFEST (modified) (1 diff)
-
PREREQUISITES (modified) (1 diff)
-
lib/OpenGuides.pm (modified) (1 diff)
-
lib/OpenGuides/Template.pm (modified) (1 diff)
-
t/68_bug_website_displayed.t (added)
-
wiki.cgi (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Changes
r780 r782 1 1 "#" items refer to tickets. See <http://dev.openguides.org/report/9> for details. 2 3 0.54 21 April 2006 4 #112 Fixed website display bug introduced in 0.53. 2 5 3 6 0.53 20 April 2006 -
trunk/MANIFEST
r753 r782 93 93 t/66_bug_latlong_representation.t 94 94 t/67_bug_first_version.t 95 t/68_bug_website_displayed.t 95 96 t/templates/15_test.tt 96 97 wiki.cgi -
trunk/PREREQUISITES
r780 r782 1 Modules required by OpenGuides 0.5 31 Modules required by OpenGuides 0.54 2 2 =================================== 3 3 -
trunk/lib/OpenGuides.pm
r781 r782 15 15 use vars qw( $VERSION ); 16 16 17 $VERSION = '0.54 -svn';17 $VERSION = '0.54'; 18 18 19 19 =head1 NAME -
trunk/lib/OpenGuides/Template.pm
r776 r782 298 298 : $q->param("website"); 299 299 my $formatted_website_text = ""; 300 if ( $website && $website !="http://" ) {300 if ( $website && $website ne "http://" ) { 301 301 $formatted_website_text = $class->format_website_text( 302 302 formatter => $formatter, -
trunk/wiki.cgi
r781 r782 5 5 6 6 use vars qw( $VERSION ); 7 $VERSION = '0.54 -svn';7 $VERSION = '0.54'; 8 8 9 9 use CGI qw/:standard/;
