Changeset 782

Show
Ignore:
Timestamp:
04/21/06 10:18:17 (3 years ago)
Author:
dom
Message:

Fix bug and release 0.54 (fixes #112)

Location:
trunk
Files:
1 added
6 modified

Legend:

Unmodified
Added
Removed
  • trunk/Changes

    r780 r782  
    11"#" items refer to tickets. See <http://dev.openguides.org/report/9> for details. 
     2 
     30.54    21 April 2006 
     4        #112 Fixed website display bug introduced in 0.53. 
    25 
    360.53    20 April 2006 
  • trunk/MANIFEST

    r753 r782  
    9393t/66_bug_latlong_representation.t 
    9494t/67_bug_first_version.t 
     95t/68_bug_website_displayed.t 
    9596t/templates/15_test.tt 
    9697wiki.cgi 
  • trunk/PREREQUISITES

    r780 r782  
    1 Modules required by OpenGuides 0.53 
     1Modules required by OpenGuides 0.54 
    22=================================== 
    33 
  • trunk/lib/OpenGuides.pm

    r781 r782  
    1515use vars qw( $VERSION ); 
    1616 
    17 $VERSION = '0.54-svn'; 
     17$VERSION = '0.54'; 
    1818 
    1919=head1 NAME 
  • trunk/lib/OpenGuides/Template.pm

    r776 r782  
    298298                                  : $q->param("website"); 
    299299    my $formatted_website_text = ""; 
    300     if ( $website && $website != "http://" ) { 
     300    if ( $website && $website ne "http://" ) { 
    301301        $formatted_website_text = $class->format_website_text( 
    302302            formatter => $formatter, 
  • trunk/wiki.cgi

    r781 r782  
    55 
    66use vars qw( $VERSION ); 
    7 $VERSION = '0.54-svn'; 
     7$VERSION = '0.54'; 
    88 
    99use CGI qw/:standard/;