diff options
author | Paul Arthur <paul.arthur@flowerysong.com> | 2013-01-26 01:15:59 -0500 |
---|---|---|
committer | Paul Arthur <paul.arthur@flowerysong.com> | 2013-01-26 01:15:59 -0500 |
commit | eaa44dcd0938ad48f4a9f863b24ca5d3a318ae10 (patch) | |
tree | 71d577e01200b3a143971a3a23d8f6b7cdf545fe /lib/debug.lib.php | |
parent | 42133f38d223a2b3b81d309f2d1a983ef2012485 (diff) | |
download | ampache-eaa44dcd0938ad48f4a9f863b24ca5d3a318ae10.tar.gz ampache-eaa44dcd0938ad48f4a9f863b24ca5d3a318ae10.tar.bz2 ampache-eaa44dcd0938ad48f4a9f863b24ca5d3a318ae10.zip |
Continue moving things into UI
check_php_iconv() from lib/debug.lib.php becomes UI::check_iconv()
truncate_with_ellipsis() from lib/ui.lib.php becomes UI::truncate()
Diffstat (limited to 'lib/debug.lib.php')
-rw-r--r-- | lib/debug.lib.php | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/lib/debug.lib.php b/lib/debug.lib.php index 465801a7..8087bf4d 100644 --- a/lib/debug.lib.php +++ b/lib/debug.lib.php @@ -73,20 +73,6 @@ function check_php_session() { } // check_php_session /** - * check_php_iconv - * checks to see if you have iconv installed - */ -function check_php_iconv() { - - if (!function_exists('iconv')) { - return false; - } - - return true; - -} // check_php_iconv - -/** * check_php_pcre * This makes sure they have pcre (preg_???) support * compiled into PHP this is required! |