]> git.wh0rd.org - tt-rss.git/blobdiff - compat.php
_debug: mention current PID
[tt-rss.git] / compat.php
index 57875398ba173e0a9c74cf02b00272a1a39cb98b..b2f6bd344657e60b8d3be4d94d4f0779f54faed3 100644 (file)
@@ -1,4 +1,4 @@
-<?
+<?php
 
 if (!function_exists('mb_strlen')) 
 {
@@ -93,5 +93,11 @@ if (!function_exists('mb_substr'))
        } 
           
       return $i;      
-    }
+        }
+
+       if (!function_exists('mb_strtolower')) {
+         function mb_strtolower($msg, $encoding) {
+                 return $msg;
+               }
+       }
 }