1
0
mirror of https://github.com/apache/httpd.git synced 2025-08-08 15:02:10 +03:00

change r.content_type = "something" to use ap_set_content_type, which it should as was pointed out by Bertrand Mansion

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@748946 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Brian McCallister
2009-03-01 01:25:27 +00:00
parent e171af3118
commit d68a529544
3 changed files with 5 additions and 20 deletions

View File

@@ -1,3 +1,4 @@
function handle(r)
r:puts("Hi!")
r.content_type = "text/plain"
r:puts("Hi there!")
end