s/holded by/maintained/
authorJoshua Ferraro <jmf@liblime.com>
Thu, 27 Dec 2007 18:22:10 +0000 (13:22 -0500)
committerJoshua Ferraro <jmf@liblime.com>
Fri, 28 Dec 2007 14:32:07 +0000 (08:32 -0600)
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
installer/data/mysql/update22to30.pl
installer/data/mysql/updatedatabase.pl
installer/install.pl

index 7011698..355df60 100755 (executable)
@@ -2207,7 +2207,7 @@ sub SetVersion {
       my $finish=$dbh->prepare("UPDATE systempreferences SET value=? WHERE variable='Version'");
       $finish->execute($kohaversion);
     } else {
-      my $finish=$dbh->prepare("INSERT into systempreferences (variable,value,explanation) values ('Version',?,'The Koha database version. Don t change this value manually, it s holded by the webinstaller')");
+      my $finish=$dbh->prepare("INSERT into systempreferences (variable,value,explanation) values ('Version',?,'The Koha database version. WARNING: Don\'t change this value manually, it\'s maintained by the webinstaller')");
       $finish->execute($kohaversion);
     }
 }
index da1c23a..cda0b96 100755 (executable)
@@ -859,7 +859,7 @@ sub SetVersion {
       my $finish=$dbh->prepare("UPDATE systempreferences SET value=? WHERE variable='Version'");
       $finish->execute($kohaversion);
     } else {
-      my $finish=$dbh->prepare("INSERT into systempreferences (variable,value,explanation) values ('Version',?,'The Koha database version. Don t change this value manually, it s holded by the webinstaller')");
+      my $finish=$dbh->prepare("INSERT into systempreferences (variable,value,explanation) values ('Version',?,'The Koha database version. WARNING: Don\'t change this value manually, it\'s maintained by the webinstaller')");
       $finish->execute($kohaversion);
     }
 }
index 32a552d..24d7393 100755 (executable)
@@ -273,7 +273,7 @@ elsif ( $step && $step == 3 ) {
             $finish->execute($kohaversion);
         } else {
             warn "INSERT Version";
-            my $finish=$dbh->prepare("INSERT into systempreferences (variable,value,explanation) values ('Version',?,'The Koha database version. Don t change this value manually, it s holded by the webinstaller')");
+            my $finish=$dbh->prepare("INSERT into systempreferences (variable,value,explanation) values ('Version',?,'The Koha database version. WARNING: Don\'t change this value manually, it\'s maintained by the webinstaller')");
             $finish->execute($kohaversion);
         }