소스 검색

- added variable initalization and check on variable

vanmer 19 년 전
부모
커밋
1f5ee76936
1개의 변경된 파일5개의 추가작업 그리고 2개의 파일을 삭제
  1. 5 2
      templates/default/stylelink.tpl

+ 5 - 2
templates/default/stylelink.tpl

@@ -58,8 +58,8 @@ echo $css_link_html;
 **/
 function list_css_files($cssdir,$cssroot) {
     if (!$cssroot OR !$cssdir) return false;
+    $files=array();
    if (is_dir($cssdir)) {
-        $files=array();
         if ($dh = opendir($cssdir)) {
             while (($file = readdir($dh)) !== false) {
                 if ((strlen($file)>3) AND strtolower(substr($file,strlen($file)-3,3))=='css') {
@@ -69,7 +69,7 @@ function list_css_files($cssdir,$cssroot) {
         }
         closedir($dh);
     }
-    if ($files) {
+    if (count($files)>0) {
 //        sort($files);
         return $files;
     }
@@ -125,6 +125,9 @@ function css_link($url, $name = null, $alt = true, $mtype = 'screen', $xhtml_end
 
 /**
  * $Log$
+ * Revision 1.2  2006/07/09 22:37:35  vanmer
+ * - added variable initalization and check on variable
+ *
  * Revision 1.1  2006/07/09 22:23:03  vanmer
  * - intial revision of a template to display CSS links at the top of the page
  *