1
0
mirror of https://github.com/ezyang/htmlpurifier.git synced 2025-08-04 13:18:00 +02:00

Fix two minor bugs, updating Phorum and removing unused $dir variable.

Signed-off-by: Edward Z. Yang <edwardzyang@thewritingpot.com>
This commit is contained in:
Edward Z. Yang
2009-05-27 01:17:23 -04:00
parent a2885181df
commit 4a87f732ca
2 changed files with 8 additions and 8 deletions

View File

@@ -42,7 +42,7 @@ class HTMLPurifier_ConfigSchema_InterchangeBuilder
$parser = new HTMLPurifier_StringHashParser();
$this->build(
$interchange,
new HTMLPurifier_StringHash( $parser->parseFile($dir . $file) )
new HTMLPurifier_StringHash( $parser->parseFile($file) )
);
}