OSDN Git Service

クラス名をUpperCamelCaseに統一した際のtypoを修正
authorreine <reine@users.sourceforge.jp>
Sat, 31 Mar 2012 17:47:16 +0000 (02:47 +0900)
committerreine <reine@users.sourceforge.jp>
Sat, 31 Mar 2012 17:47:16 +0000 (02:47 +0900)
nucleus/libs/ADMIN.php
nucleus/libs/ENCAPSULATE.php

index 465d6f1..a4d12cf 100644 (file)
@@ -1751,7 +1751,7 @@ class Admin
         $template['tabindex'] = 10;
 
         $manager->loadClass("ENCAPSULATE");
-        $batch = new Barch('member');
+        $batch = new Batch('member');
         $batch->showlist($query,'table',$template);
 
         echo '<h3>' . _MEMBERS_NEW .'</h3>';
@@ -2329,7 +2329,7 @@ class Admin
         $template['tabindex'] = 10;
 
         $manager->loadClass("ENCAPSULATE");
-        $batch = new Barch('team');
+        $batch = new Batch('team');
         $batch->showlist($query, 'table', $template);
 
         ?>
@@ -2671,7 +2671,7 @@ class Admin
         $template['tabindex'] = 200;
 
         $manager->loadClass("ENCAPSULATE");
-        $batch = new Barch('category');
+        $batch = new Batch('category');
         $batch->showlist($query,'table',$template);
 
         ?>
index 463a631..0047872 100644 (file)
@@ -67,7 +67,7 @@ class NavList extends Encapsulate
        }\r
 \r
        function showBatchList($batchtype, $query, $type, $template, $errorMessage = _LISTS_NOMORE) {\r
-               $batch = new Barch($batchtype);\r
+               $batch = new Batch($batchtype);\r
 \r
                $this->doEncapsulate(\r
                                array(&$batch, 'showlist'),\r