Skip to content

Commit

Permalink
utils Add missing semi-colons to documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
oej committed Sep 8, 2016
1 parent b3de7f2 commit 31cbec1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions modules/utils/doc/utils_admin.xml
Expand Up @@ -237,7 +237,7 @@ modparam("utils", "xcap_table", "pres_xcap")
...
# GET-Request
http_query("http://tutpro.com/index.php?r_uri=$(ru{s.escape.param})&f_uri=$(fu{s.escape.param})",
"$var(result)")
"$var(result)");
switch ($retcode) {
...
}
Expand All @@ -247,7 +247,7 @@ switch ($retcode) {
...
# POST-Request
http_query("http://tutpro.com/index.php", "r_uri=$(ru{s.escape.param})&f_uri=$(fu{s.escape.param})",
"$var(result)")
"$var(result)");
switch ($retcode) {
...
}
Expand All @@ -257,7 +257,7 @@ switch ($retcode) {
...
# GET-Request with additional headers and Post-Data.
http_query("http://tutpro.com/index.php", "{ "alert": "Alert text goes here" }", "Content-Type: application/json"
"$var(result)")
"$var(result)");
switch ($retcode) {
...
}
Expand Down

0 comments on commit 31cbec1

Please sign in to comment.