]> git.pld-linux.org Git - packages/php-pear-Text_Wiki.git/blob - php-pear-Text_Wiki-path_fix.patch
- initial import
[packages/php-pear-Text_Wiki.git] / php-pear-Text_Wiki-path_fix.patch
1 diff -burN Text_Wiki-0.6.orig/Text_Wiki.php Text_Wiki-0.6/Text_Wiki.php
2 --- Text_Wiki-0.6.orig/Text_Wiki.php    2003-12-06 18:31:59.000000000 +0100
3 +++ Text_Wiki-0.6/Text_Wiki.php 2003-12-06 18:39:56.000000000 +0100
4 @@ -18,7 +18,7 @@
5  //
6  // $Id$
7  
8 -require_once 'Text_Wiki/Rule.php';
9 +require_once 'Text/Wiki/Rule.php';
10  
11  
12  /**
13 @@ -291,7 +291,7 @@
14      function Text_Wiki($options = array())
15      {
16          // set the default path for 
17 -        $this->_default_path = dirname(__FILE__) . '/Text_Wiki/rules/';
18 +        $this->_default_path = dirname(__FILE__) . '/Wiki/rules/';
19          
20          if (isset($options) && is_array($options)) {
21              foreach ($options as $key => $val) {
This page took 0.051302 seconds and 3 git commands to generate.