From adcf4b9308ecfecb47cf556afece629cf54b66e3 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Jan=20Kr=C3=BCger?= Date: Wed, 28 Mar 2012 12:10:41 +0200 Subject: [PATCH] cgi/: fix a pervasive spelling mistake The "successfuly" in a bunch of pages has been bothering me for a while now. It's high time for it to disappear. --- cgi/delproj.cgi | 2 +- cgi/editproj.cgi | 2 +- cgi/regproj.cgi | 2 +- cgi/reguser.cgi | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/cgi/delproj.cgi b/cgi/delproj.cgi index c549a3f..248631f 100755 --- a/cgi/delproj.cgi +++ b/cgi/delproj.cgi @@ -51,7 +51,7 @@ if ($cgi->param('y0')) { exit; } $proj->delete; - print "

Project successfuly deleted. Have a nice day.

\n"; + print "

Project successfully deleted. Have a nice day.

\n"; exit; } diff --git a/cgi/editproj.cgi b/cgi/editproj.cgi index f5a78f4..2a6843d 100755 --- a/cgi/editproj.cgi +++ b/cgi/editproj.cgi @@ -38,7 +38,7 @@ $proj or die "not found project $name, that's really weird!"; if ($cgi->param('y0')) { # submitted, let's see if ($proj->cgi_fill($gcgi) and $proj->authenticate($gcgi) and $proj->update) { - print "

Project successfuly updated.

\n"; + print "

Project successfully updated.

\n"; if ($proj->{clone_failed}) { print "

Please pass onwards.

\n"; print "\n"; diff --git a/cgi/regproj.cgi b/cgi/regproj.cgi index 8751c1f..1c0dde9 100755 --- a/cgi/regproj.cgi +++ b/cgi/regproj.cgi @@ -82,7 +82,7 @@ if ($cgi->param('mode')) { $proj->conjure; print < -Project $name successfuly set up.

+Project $name successfully set up.

EOT print "

The push URL for the project is $Girocco::Config::pushurl/$name.git.

"; print "

The read-only URL for the project is " . diff --git a/cgi/reguser.cgi b/cgi/reguser.cgi index 12d209f..e086ba7 100755 --- a/cgi/reguser.cgi +++ b/cgi/reguser.cgi @@ -36,7 +36,7 @@ if ($cgi->param('name')) { if ($user->cgi_fill($gcgi)) { $user->conjure; print <User $name successfuly registered.

+

User $name successfully registered.

Project administrators can now give you push access to their projects.

Congratulations, and have a lot of fun!

EOT -- 2.11.4.GIT