mirror of
				https://github.com/asterisk/asterisk.git
				synced 2025-10-29 15:36:13 +00:00 
			
		
		
		
	Merged revisions 47625 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r47625 | file | 2006-11-14 16:30:44 -0500 (Tue, 14 Nov 2006) | 2 lines Small documentation clarification for URIENCODE. (issue #8294 reported by salaud) ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@47626 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
		| @@ -74,14 +74,14 @@ static int uridecode(struct ast_channel *chan, char *cmd, char *data, | |||||||
|  |  | ||||||
| static struct ast_custom_function urldecode_function = { | static struct ast_custom_function urldecode_function = { | ||||||
| 	.name = "URIDECODE", | 	.name = "URIDECODE", | ||||||
| 	.synopsis = "Decodes an URI-encoded string.", | 	.synopsis = "Decodes a URI-encoded string according to RFC 2396.", | ||||||
| 	.syntax = "URIDECODE(<data>)", | 	.syntax = "URIDECODE(<data>)", | ||||||
| 	.read = uridecode, | 	.read = uridecode, | ||||||
| }; | }; | ||||||
|  |  | ||||||
| static struct ast_custom_function urlencode_function = { | static struct ast_custom_function urlencode_function = { | ||||||
| 	.name = "URIENCODE", | 	.name = "URIENCODE", | ||||||
| 	.synopsis = "Encodes a string to URI-safe encoding.", | 	.synopsis = "Encodes a string to URI-safe encoding according to RFC 2396.", | ||||||
| 	.syntax = "URIENCODE(<data>)", | 	.syntax = "URIENCODE(<data>)", | ||||||
| 	.read = uriencode, | 	.read = uriencode, | ||||||
| }; | }; | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user