diff options
author | Evan Prodromou <evan@prodromou.name> | 2008-06-02 14:01:08 -0400 |
---|---|---|
committer | Evan Prodromou <evan@prodromou.name> | 2008-06-02 14:01:08 -0400 |
commit | 74bec9503281d6a18c8b56b03e57d58ce9c4eddf (patch) | |
tree | abd5a9e5dc5f662db9399984abe4f4d259d33c1c /lib | |
parent | 3abe0290b7a2ff446e007089757ad93b1f50c289 (diff) |
fix dynamically-created code
darcs-hash:20080602180108-84dde-c499dd9734e87081a3d7124c5b6ef885dc346670.gz
Diffstat (limited to 'lib')
-rw-r--r-- | lib/omb.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/omb.php b/lib/omb.php index 9efdaff62..5f31de42c 100644 --- a/lib/omb.php +++ b/lib/omb.php @@ -63,7 +63,7 @@ function omb_hmac_sha1() { function omb_service_filter($type) { return create_function('$s', - 'return omb_match_service($s, \''.$type.'\''); + 'return omb_match_service($s, \''.$type.'\');'); } function omb_match_service($service, $type) { |