Changeset 16832


Ignore:
Timestamp:
2007/11/28 17:09:18 (16 years ago)
Author:
satou
Message:

リダイレクト適用

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/feature-module-update/data/class/pages/admin/system/LC_Page_Admin_System_Rank.php

    r16831 r16832  
    5959        if($_GET['move'] == 'up') { 
    6060            // 正当な数値であった場合 
    61             if(SC_Utils_Ex::sfIsInt($_GET['id'])){ 
     61            if(SC_Utils::sfIsInt($_GET['id'])){ 
    6262                $this->lfRunkUp($conn, $_GET['id']); 
    6363            // エラー処理 
    6464            } else { 
    65                 GC_Utils_Ex::gfPrintLog("error id=".$_GET['id']); 
     65                GC_Utils::gfPrintLog("error id=".$_GET['id']); 
    6666            } 
    6767        } else if($_GET['move'] == 'down') { 
    68             if(SC_Utils_Ex::sfIsInt($_GET['id'])){ 
     68            if(SC_Utils::sfIsInt($_GET['id'])){ 
    6969                $this->lfRunkDown($conn, $_GET['id']); 
    7070            // エラー処理 
    7171            } else { 
    72                 GC_Utils_Ex::gfPrintLog("error id=".$_GET['id']); 
     72                GC_Utils::gfPrintLog("error id=".$_GET['id']); 
    7373            } 
    7474        } 
Note: See TracChangeset for help on using the changeset viewer.