summaryrefslogtreecommitdiff
path: root/dev-php/PEAR-HTML_Template_Flexy/files/1.3.13-postrelease-fixes.patch
blob: d5079c1526bcf85a7accde34c188ac572f71434d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
--- a/HTML/Template/Flexy.php	2016/05/26 03:59:27	339237
+++ a/HTML/Template/Flexy.php	2016/05/26 04:01:15	339238
@@ -241,7 +241,7 @@
     *   @param    array    $options (Optional)
     */
       
-    function HTML_Template_Flexy( $options=array() )
+    function __construct( $options=array() )
     {
         
         $baseoptions = array();
@@ -288,6 +288,7 @@
         $ret = false;
         foreach ($dirs as $tmplDir) {
             if (@!file_exists($tmplDir . DIRECTORY_SEPARATOR .$file)) {
+                $this->debug("skip no file: $tmplDir/$file");
                 continue;
             }
             
@@ -296,10 +297,12 @@
                         "<BR>{$this->currentTemplate }<BR>{$tmplDir}" . DIRECTORY_SEPARATOR . $file,  
                         HTML_TEMPLATE_FLEXY_ERROR_INVALIDARGS , HTML_TEMPLATE_FLEXY_ERROR_DIE);
             }
-            
+            $this->debug("found file: $tmplDir/$file");
             $ret = $tmplDir;
             
         }
+        $this->debug("using file: $ret/$file");
+            
         return $ret;
         
     }
--- a/HTML/Template/Flexy/Compiler.php	2015/03/02 22:50:57	336027
+++ a/HTML/Template/Flexy/Compiler.php	2016/05/26 04:01:15	339238
@@ -90,7 +90,7 @@
     * @return   string   to compile (if not using a file as the source)
     * @access   public
     */
-    function compile(&$flexy,$string = false) 
+    function compile($flexy,$string = false) 
     {
         echo "No compiler implemented!";
     }
--- a/HTML/Template/Flexy/Element.php	2016/05/26 03:59:27	339237
+++ a/HTML/Template/Flexy/Element.php	2016/05/26 04:01:15	339238
@@ -127,7 +127,7 @@
      *                                   or HTML attributes name="value" pairs
      * @access   public
      */
-    function HTML_Template_Flexy_Element($tag='', $attributes=null)
+    function __construct($tag='', $attributes=null)
     {
         
         $this->tag = strtolower($tag);