Ignore:
Timestamp:
2012/02/06 11:05:15 (12 years ago)
Author:
Seasoft
Message:

#1613 (ソース整形・ソースコメントの改善)

  • Zend Framework PHP 標準コーディング規約への準拠を高めた
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_12-dev/data/class/pages/admin/products/LC_Page_Admin_Products_ProductRank.php

    r21420 r21441  
    7878            isset($_POST['product_id']) ? $_POST['product_id'] : ''; 
    7979 
    80         switch($this->getMode()) { 
     80        switch ($this->getMode()) { 
    8181        case 'up': 
    8282            $this->lfRankUp($objDb, $this->arrForm['parent_category_id'], $this->arrForm['product_id']); 
     
    187187        $key = "pos-".$product_id; 
    188188        $input_pos = mb_convert_kana($_POST[$key], 'n'); 
    189         if(SC_Utils_Ex::sfIsInt($input_pos)) { 
     189        if (SC_Utils_Ex::sfIsInt($input_pos)) { 
    190190            $where = "category_id = " . SC_Utils_Ex::sfQuoteSmart($parent_category_id); 
    191191            $objDb->sfMoveRank("dtb_product_categories", "product_id", $product_id, $input_pos, $where); 
Note: See TracChangeset for help on using the changeset viewer.