aboutsummaryrefslogtreecommitdiffstats
path: root/modules/phpbb/files/phpbb_apply_config.pl
diff options
context:
space:
mode:
Diffstat (limited to 'modules/phpbb/files/phpbb_apply_config.pl')
-rw-r--r--modules/phpbb/files/phpbb_apply_config.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/phpbb/files/phpbb_apply_config.pl b/modules/phpbb/files/phpbb_apply_config.pl
index 5bd094e4..a58df24e 100644
--- a/modules/phpbb/files/phpbb_apply_config.pl
+++ b/modules/phpbb/files/phpbb_apply_config.pl
@@ -16,7 +16,7 @@ my $dbh = DBI->connect("dbi:Pg:","","", {
my $table = "phpbb_config";
# FIXME add rollback if there is a problem
-# http://docstore.mik.ua/orelly/linux/dbi/ch06_03.htm
+# https://docstore.mik.ua/orelly/linux/dbi/ch06_03.htm
my $update = $dbh->prepare("UPDATE $table SET config_value = ?, is_dynamic = ? WHERE config_name = ?");
my $insert = $dbh->prepare("INSERT INTO $table ( config_value, is_dynamic, config_name ) VALUES ( ? , ? , ? )");