Changeset 61e91d7ff4f237358b7fb315cda4b370061326f0
- Timestamp:
- 07/25/12 19:18:46 (10 months ago)
- git-parent:
[2d127f75cf7a63e7d81f39371ed70b451b2e6597], [0184fd815ace8581ca975db9546fbe7aa74b7f62]
- Files:
-
- src/modules-lua/noit/module/http.lua (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
src/modules-lua/noit/module/http.lua
r353258a r0184fd8 553 553 has_body_matches = false 554 554 for key, value in pairs(check.config) do 555 m= string.find(key, BODY_MATCHES_PREFIX)556 557 if m == 1 then555 local match = string.find(key, BODY_MATCHES_PREFIX) 556 557 if match == 1 then 558 558 has_body_matches = true 559 559 key = string.gsub(key, BODY_MATCHES_PREFIX, '')
