From 2bfdfaa02c25c27286754c7c5ab90d2380482ce8 Mon Sep 17 00:00:00 2001 From: "Edward Z. Yang" Date: Sun, 24 Sep 2006 18:17:05 +0000 Subject: [PATCH] [1.1.1] Fix bad include paths from ConfigDef to ConfigSchema changes. git-svn-id: http://htmlpurifier.org/svnroot/htmlpurifier/trunk@447 48356398-32a2-884e-a903-53898d9a118a --- benchmarks/Lexer.php | 2 +- benchmarks/ProfileDirectLex.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/benchmarks/Lexer.php b/benchmarks/Lexer.php index da112fe4..d515a230 100644 --- a/benchmarks/Lexer.php +++ b/benchmarks/Lexer.php @@ -3,7 +3,7 @@ // emulates inserting a dir called HTMLPurifier into your class dir set_include_path(get_include_path() . PATH_SEPARATOR . '../library/'); -require_once 'HTMLPurifier/ConfigDef.php'; +require_once 'HTMLPurifier/ConfigSchema.php'; require_once 'HTMLPurifier/Config.php'; require_once 'HTMLPurifier/Lexer/DirectLex.php'; require_once 'HTMLPurifier/Lexer/PEARSax3.php'; diff --git a/benchmarks/ProfileDirectLex.php b/benchmarks/ProfileDirectLex.php index 175d2894..faf9bef5 100644 --- a/benchmarks/ProfileDirectLex.php +++ b/benchmarks/ProfileDirectLex.php @@ -2,7 +2,7 @@ set_include_path(get_include_path() . PATH_SEPARATOR . '../library/'); -require_once 'HTMLPurifier/ConfigDef.php'; +require_once 'HTMLPurifier/ConfigSchema.php'; require_once 'HTMLPurifier/Config.php'; require_once 'HTMLPurifier/Lexer/DirectLex.php';