Module: sip-router
Branch: master
Commit: 3bd01c035d5f4c6be55a9995103c0da689d5df18
URL:
http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=3bd01c0…
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Committer: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: Thu Oct 25 10:01:08 2012 +0200
acc(k): fixed typo in acc_db_request() example
- reported by Bernie Höneisen, FS#251
---
modules_k/acc/README | 4 ++--
modules_k/acc/doc/acc_admin.xml | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/modules_k/acc/README b/modules_k/acc/README
index 88a6eda..eda8bab 100644
--- a/modules_k/acc/README
+++ b/modules_k/acc/README
@@ -1184,8 +1184,8 @@ acc_log_request("Some comment");
Example 1.46. acc_db_request usage
...
-acc_log_request("Some comment", "SomeTable");
-acc_log_request("Some comment", "acc_$time(year)_$time(mon)");
+acc_db_request("Some comment", "SomeTable");
+acc_db_request("Some comment", "acc_$time(year)_$time(mon)");
...
7.3. acc_rad_request(comment)
diff --git a/modules_k/acc/doc/acc_admin.xml b/modules_k/acc/doc/acc_admin.xml
index 96edd55..269f5f8 100644
--- a/modules_k/acc/doc/acc_admin.xml
+++ b/modules_k/acc/doc/acc_admin.xml
@@ -1297,8 +1297,8 @@ acc_log_request("Some comment");
<title>acc_db_request usage</title>
<programlisting format="linespecific">
...
-acc_log_request("Some comment", "SomeTable");
-acc_log_request("Some comment", "acc_$time(year)_$time(mon)");
+acc_db_request("Some comment", "SomeTable");
+acc_db_request("Some comment", "acc_$time(year)_$time(mon)");
...
</programlisting>
</example>