diff options
author | Andy <andy@ubuntu.corp.google.com> | 2009-06-01 23:08:13 -0700 |
---|---|---|
committer | Andy <andy@ubuntu.corp.google.com> | 2009-06-01 23:08:13 -0700 |
commit | d0845aadc629cf10b8eee490a651c039750a1430 (patch) | |
tree | de8b0e89bb70343e28b1c311df5dd34a8e6c91cb | |
parent | 181c97ef4b29bb3c68a6c9b5d2f8165e8b44ba29 (diff) |
Workaround for parse_ini_file issue: There's no way to escape a double-quote in a value that's read with
parse_ini_file. Using single quotes instead, even if that's not the best style in English.
-rw-r--r-- | modules/akismet/module.info | 2 | ||||
-rw-r--r-- | modules/recaptcha/module.info | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/modules/akismet/module.info b/modules/akismet/module.info index dd2df5dd..8655927d 100644 --- a/modules/akismet/module.info +++ b/modules/akismet/module.info @@ -1,3 +1,3 @@ name = Akismet -description = "Filter comments through the <a href="http://akismet.com">Akismet web service</a> to detect and eliminate spam. You'll need a <a href="http://wordpress.com/api-keys/">WordPress.com API</a> key to use it." +description = "Filter comments through the <a href='http://akismet.com'>Akismet web service</a> to detect and eliminate spam. You'll need a <a href='http://wordpress.com/api-keys/'>WordPress.com API</a> key to use it." version = 1 diff --git a/modules/recaptcha/module.info b/modules/recaptcha/module.info index 134ae31c..85397580 100644 --- a/modules/recaptcha/module.info +++ b/modules/recaptcha/module.info @@ -1,3 +1,3 @@ name = Recaptcha -description = "<a href="http://recaptcha.net">Recaptcha</a> displays a graphical verification that protects the input form from abuse from "bots," or automated programs usually written to generate spam." +description = "<a href='http://recaptcha.net'>Recaptcha</a> displays a graphical verification that protects the input form from abuse from 'bots,' or automated programs usually written to generate spam." version = 1 |