summaryrefslogtreecommitdiff
path: root/tw
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2007-05-20 08:24:47 +0100
committerAndrew Dolgov <[email protected]>2007-05-20 08:24:47 +0100
commitf2cc8a90362e445b83669080ce9c3ac914769fd7 (patch)
tree11bf04659df93c7d88fffeb75b151d45fcf993e6 /tw
parent7704a6eefdc51a902de98afc37de643e0029bf16 (diff)
fix call-by-reference in tw error
Diffstat (limited to 'tw')
-rw-r--r--tw/tw.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/tw/tw.php b/tw/tw.php
index c4f813edd..15292760e 100644
--- a/tw/tw.php
+++ b/tw/tw.php
@@ -168,7 +168,7 @@ class twParser
function get_errors() { return $this->err->get_by_mask(0x0f00); }
function get_internal() { return $this->err->get_by_mask(0xf000); }
function get_by_mask($mask) { return $this->err->get_by_mask($mask); }
- function get_error_text ( $id, &$lang ) { return $this->err->get_error_text ( $id, &$lang ); }
+ function get_error_text ( $id, &$lang ) { return $this->err->get_error_text ( $id, $lang ); }
// ---------------------------------------------------------------------------------
// LOW LEVEL functions
@@ -288,4 +288,4 @@ function getword ($state)
}
} // END class twParser
-?> \ No newline at end of file
+?>