summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authoruckelman <uckelman@nomic.net>2010-04-24 16:58:07 +0000
committeruckelman <uckelman@nomic.net>2010-04-24 16:58:07 +0000
commit64bfac6e474b549bd938c9e9c659139a88d47eee (patch)
tree2f3335bc8aad493f860873808c2e73ef13a8d4ed /test
parentfb9c0cd58a5b2ba94d01c5c24733fbd4fb84a02e (diff)
Need to quote interpolated values.
git-svn-id: https://vassalengine.svn.sourceforge.net/svnroot/vassalengine/site-src/trunk@6735 67b53d14-2c14-4ace-a08f-0dab2b34000c
Diffstat (limited to 'test')
-rw-r--r--test/unbbcodeTest.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/unbbcodeTest.php b/test/unbbcodeTest.php
index abbbe05..b39f536 100644
--- a/test/unbbcodeTest.php
+++ b/test/unbbcodeTest.php
@@ -20,9 +20,9 @@ class unbbcodeTest extends PHPUnit_Framework_TestCase {
try {
require_once("src/unbbcode.php");
- \$msg = $msg;
- \$uid = $uid;
- \$bitfield = $bitfield;
+ \$msg = '$msg';
+ \$uid = '$uid';
+ \$bitfield = '$bitfield';
\$unbbcode = new unbbcode();
\$unbbcode->bbcode_second_pass(\$msg, \$uid, \$bitfield);