Skip to content

Commit

Permalink
Text cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
pudge committed Jul 12, 2000
1 parent 8dcac33 commit 5fdfa2a
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion plugins/Submit/submit.pl
Expand Up @@ -416,7 +416,7 @@ sub submissionEd {

# Adds proper section and title for form editor.
my $sec = $section ne $I{defaultsection} ? "&section=$section" : '';
my $stitle = '&title=' . fixurl($subj, 1);
my $stitle = '&title=' . fixparam($subj);
$stitle =~ s/%/%%/g; # for sprintf

printf(($admin ? <<ADMIN : <<USER), @strs);
Expand Down
2 changes: 1 addition & 1 deletion public_html/admin.pl
Expand Up @@ -1125,7 +1125,7 @@ sub editstory {

my $newarticle = 1 if !$sid && !$I{F}{sid};

print "$msg" if (defined($msg));
print $msg if defined $msg;

print <<EOT;
Expand Down
2 changes: 1 addition & 1 deletion public_html/submit.pl
Expand Up @@ -416,7 +416,7 @@ sub submissionEd {

# Adds proper section and title for form editor.
my $sec = $section ne $I{defaultsection} ? "&section=$section" : '';
my $stitle = '&title=' . fixurl($subj, 1);
my $stitle = '&title=' . fixparam($subj);
$stitle =~ s/%/%%/g; # for sprintf

printf(($admin ? <<ADMIN : <<USER), @strs);
Expand Down
2 changes: 1 addition & 1 deletion themes/slashcode/htdocs/admin.pl
Expand Up @@ -1125,7 +1125,7 @@ sub editstory {

my $newarticle = 1 if !$sid && !$I{F}{sid};

print "$msg" if (defined($msg));
print $msg if defined $msg;

print <<EOT;
Expand Down
2 changes: 1 addition & 1 deletion themes/slashcode/htdocs/submit.pl
Expand Up @@ -416,7 +416,7 @@ sub submissionEd {

# Adds proper section and title for form editor.
my $sec = $section ne $I{defaultsection} ? "&section=$section" : '';
my $stitle = '&title=' . fixurl($subj, 1);
my $stitle = '&title=' . fixparam($subj);
$stitle =~ s/%/%%/g; # for sprintf

printf(($admin ? <<ADMIN : <<USER), @strs);
Expand Down

0 comments on commit 5fdfa2a

Please sign in to comment.