Changeset 230

Show
Ignore:
Timestamp:
08/04/03 15:06:59 (5 years ago)
Author:
kake
Message:

0.23 4 August 2003

Removed the "POST_CHOMP" option as it was messing up textareas, added
a test to make sure this doesn't reoccur.

Location:
trunk
Files:
1 added
6 modified

Legend:

Unmodified
Added
Removed
  • trunk/Changes

    r228 r230  
     10.23    4 August 2003 
     2        Removed the "POST_CHOMP" option as it was messing up textareas, added 
     3        a test to make sure this doesn't reoccur. 
     4 
    150.22    4 August 2003 
    26        Fixed bug with usernames containing spaces in recent changes/userstats. 
  • trunk/MANIFEST

    r214 r230  
    5656t/41_pubcrawl.t 
    5757t/51_diff.t 
     58t/61_bug_textareas.t 
    5859t/templates/15_test.tt 
    5960wiki.cgi 
  • trunk/PREREQUISITES

    r224 r230  
    1 Modules required by OpenGuides 0.22 
     1Modules required by OpenGuides 0.23 
    22=================================== 
    33 
  • trunk/lib/OpenGuides.pm

    r213 r230  
    44use vars qw( $VERSION ); 
    55 
    6 $VERSION = '0.22'; 
     6$VERSION = '0.23'; 
    77 
    88=head1 NAME 
  • trunk/lib/OpenGuides/Template.pm

    r226 r230  
    33use strict; 
    44use vars qw( $VERSION ); 
    5 $VERSION = '0.10'; 
     5$VERSION = '0.11'; 
    66 
    77use Carp qw( croak ); 
     
    105105    my $config = $args{config} or croak "No config supplied"; 
    106106    my $template_path = $config->{_}->{template_path}; 
    107     my $tt = Template->new( { POST_CHOMP   => 1, 
    108                               INCLUDE_PATH => $template_path } ); 
     107    my $tt = Template->new( { INCLUDE_PATH => $template_path } ); 
    109108 
    110109    my $script_name = $config->{_}->{script_name}; 
  • trunk/wiki.cgi

    r225 r230  
    55 
    66use vars qw( $VERSION ); 
    7 $VERSION = '0.22'; 
     7$VERSION = '0.23'; 
    88 
    99use CGI qw/:standard/;