Ignore:
Timestamp:
2012/06/15 12:37:13 (12 years ago)
Author:
shutta
Message:

#1858 (SC_Query#getSingletonInstance グローバル変数の使用を避ける)
関連して、インストール時にシステムエラーになってしまっていたので修正。

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_12-dev/data/class/SC_FormParam.php

    r21920 r21921  
    7272        $objPage = $backtraces[1]['object']; 
    7373        $objPlugin = SC_Helper_Plugin_Ex::getSingletonInstance($objPage->plugin_activate_flg); 
    74         $objPlugin->doAction('SC_FormParam_construct', array($class, $this)); 
     74        if (is_object($objPlugin)) { 
     75            $objPlugin->doAction('SC_FormParam_construct', array($class, $this)); 
     76        } 
    7577    } 
    7678 
Note: See TracChangeset for help on using the changeset viewer.