projects
/
docbot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
714701d
)
- fix wrong function names for configuration functions
author
Andreas Scherbaum
<andreas@scherbaum.biz>
Sun, 29 Sep 2013 19:47:15 +0000
(21:47 +0200)
committer
Andreas Scherbaum
<andreas@scherbaum.biz>
Sun, 29 Sep 2013 19:47:15 +0000
(21:47 +0200)
docbot.pl
patch
|
blob
|
blame
|
history
diff --git
a/docbot.pl
b/docbot.pl
index c5f9b14776f874e4349d400c8682808c00607c5a..b4a16c0fc4ce36aadcc520dcbaa12084c4dabb52 100755
(executable)
--- a/
docbot.pl
+++ b/
docbot.pl
@@
-521,7
+521,7
@@
sub read_translations {
sub config_get_key1 {
my $key1 = shift;
- return $main::config->config_get_key($key1);
+ return $main::config->config_get_key
1
($key1);
}
@@
-574,7
+574,7
@@
sub config_set_key1 {
my $key1 = shift;
my $value = shift;
- $main::config->config_set_key($key1, $value);
+ $main::config->config_set_key
1
($key1, $value);
return;
}