Index: branches/version-2_12-dev/data/class/SC_Display.php
===================================================================
--- branches/version-2_12-dev/data/class/SC_Display.php	(revision 21664)
+++ branches/version-2_12-dev/data/class/SC_Display.php	(revision 21767)
@@ -47,5 +47,5 @@
      */
 
-    function SC_Display($hasPrevURL = true) {
+    function __construct($hasPrevURL = true) {
         $this->response = new SC_Response_Ex();
         if ($hasPrevURL) {
Index: branches/version-2_12-dev/data/class/SC_SiteSession.php
===================================================================
--- branches/version-2_12-dev/data/class/SC_SiteSession.php	(revision 21704)
+++ branches/version-2_12-dev/data/class/SC_SiteSession.php	(revision 21767)
@@ -25,5 +25,5 @@
 class SC_SiteSession {
     /* コンストラクタ */
-    function SC_SiteSession() {
+    function __construct() {
         // 前ページでの登録成功判定を引き継ぐ
         $_SESSION['site']['pre_regist_success'] =
Index: branches/version-2_12-dev/data/class/SC_Cookie.php
===================================================================
--- branches/version-2_12-dev/data/class/SC_Cookie.php	(revision 21624)
+++ branches/version-2_12-dev/data/class/SC_Cookie.php	(revision 21767)
@@ -31,5 +31,5 @@
 
     // コンストラクタ
-    function SC_Cookie($day = 365) {
+    function __construct($day = 365) {
         // 有効期限
         $this->expire = time() + ($day * 24 * 3600);
Index: branches/version-2_12-dev/data/class/SC_Date.php
===================================================================
--- branches/version-2_12-dev/data/class/SC_Date.php	(revision 21514)
+++ branches/version-2_12-dev/data/class/SC_Date.php	(revision 21767)
@@ -30,5 +30,5 @@
 
     // コンストラクタ
-    function SC_Date($start_year='', $end_year='') {
+    function __construct($start_year='', $end_year='') {
         if ($start_year)  $this->setStartYear($start_year);
         if ($end_year)    $this->setEndYear($end_year);
Index: branches/version-2_12-dev/data/class/SC_Fpdf.php
===================================================================
--- branches/version-2_12-dev/data/class/SC_Fpdf.php	(revision 21750)
+++ branches/version-2_12-dev/data/class/SC_Fpdf.php	(revision 21767)
@@ -33,5 +33,5 @@
 
 class SC_Fpdf extends PDF_Japanese {
-    function SC_Fpdf($download, $title, $tpl_pdf = 'nouhinsyo1.pdf') {
+    function __construct($download, $title, $tpl_pdf = 'nouhinsyo1.pdf') {
         $this->FPDF();
         // デフォルトの設定
Index: branches/version-2_12-dev/data/class/SC_Image.php
===================================================================
--- branches/version-2_12-dev/data/class/SC_Image.php	(revision 21755)
+++ branches/version-2_12-dev/data/class/SC_Image.php	(revision 21767)
@@ -27,5 +27,5 @@
     var $tmp_dir;
 
-    function SC_Image($tmp_dir) {
+    function __construct($tmp_dir) {
         // ヘッダファイル読込
         $this->tmp_dir = rtrim($tmp_dir, '/') . '/';
Index: branches/version-2_12-dev/data/class/pages/upgrade/helper/LC_Upgrade_Helper_Json.php
===================================================================
--- branches/version-2_12-dev/data/class/pages/upgrade/helper/LC_Upgrade_Helper_Json.php	(revision 21514)
+++ branches/version-2_12-dev/data/class/pages/upgrade/helper/LC_Upgrade_Helper_Json.php	(revision 21767)
@@ -18,5 +18,5 @@
      * @return SC_Upgrade_Helper_Json
      */
-    function LC_Upgrade_Helper_Json() {
+    function __construct() {
         parent::Services_JSON();
     }
Index: branches/version-2_12-dev/data/class/graph/SC_Graph_Base.php
===================================================================
--- branches/version-2_12-dev/data/class/graph/SC_Graph_Base.php	(revision 21527)
+++ branches/version-2_12-dev/data/class/graph/SC_Graph_Base.php	(revision 21767)
@@ -182,5 +182,5 @@
 
     // コンストラクタ
-    function SC_Graph_Base($bgw, $bgh, $left, $top) {
+    function __construct($bgw, $bgh, $left, $top) {
         $this->init();
         // 画像作成
Index: branches/version-2_12-dev/data/class/graph/SC_Graph_Pie.php
===================================================================
--- branches/version-2_12-dev/data/class/graph/SC_Graph_Pie.php	(revision 21514)
+++ branches/version-2_12-dev/data/class/graph/SC_Graph_Pie.php	(revision 21767)
@@ -33,6 +33,6 @@
 
     // コンストラクタ
-    function SC_Graph_Pie($bgw = BG_WIDTH, $bgh = BG_HEIGHT, $left = PIE_LEFT, $top = PIE_TOP) {
-        parent::SC_Graph_Base($bgw, $bgh, $left, $top);
+    function __construct($bgw = BG_WIDTH, $bgh = BG_HEIGHT, $left = PIE_LEFT, $top = PIE_TOP) {
+        parent::__construct($bgw, $bgh, $left, $top);
         // サイズ設定
         $this->setSize(PIE_WIDTH, PIE_HEIGHT, PIE_THICK);
Index: branches/version-2_12-dev/data/class/graph/SC_Graph_Bar.php
===================================================================
--- branches/version-2_12-dev/data/class/graph/SC_Graph_Bar.php	(revision 21490)
+++ branches/version-2_12-dev/data/class/graph/SC_Graph_Bar.php	(revision 21767)
@@ -28,5 +28,5 @@
         $bgw = BG_WIDTH, $bgh = BG_HEIGHT, $left = LINE_LEFT, $top = LINE_TOP,
         $area_width = LINE_AREA_WIDTH, $area_height = LINE_AREA_HEIGHT) {
-        parent::SC_Graph_Line($bgw, $bgh, $left, $top, $area_width, $area_height);
+        parent::__construct($bgw, $bgh, $left, $top, $area_width, $area_height);
     }
 
Index: branches/version-2_12-dev/data/class/graph/SC_Graph_Line.php
===================================================================
--- branches/version-2_12-dev/data/class/graph/SC_Graph_Line.php	(revision 21514)
+++ branches/version-2_12-dev/data/class/graph/SC_Graph_Line.php	(revision 21767)
@@ -40,8 +40,8 @@
 
     // コンストラクタ
-    function SC_Graph_Line(
+    function __construct(
         $bgw = BG_WIDTH, $bgh = BG_HEIGHT, $left = LINE_LEFT, $top = LINE_TOP,
         $area_width = LINE_AREA_WIDTH, $area_height = LINE_AREA_HEIGHT) {
-        parent::SC_Graph_Base($bgw, $bgh, $left, $top);
+        parent::__construct($bgw, $bgh, $left, $top);
         $this->area_width = $area_width;
         $this->area_height = $area_height;
Index: branches/version-2_12-dev/data/class/SC_Initial.php
===================================================================
--- branches/version-2_12-dev/data/class/SC_Initial.php	(revision 21732)
+++ branches/version-2_12-dev/data/class/SC_Initial.php	(revision 21767)
@@ -35,5 +35,5 @@
      * コンストラクタ.
      */
-    function SC_Initial() {
+    function __construct() {
 
         /** EC-CUBEのバージョン */
Index: branches/version-2_12-dev/data/class/SC_CartSession.php
===================================================================
--- branches/version-2_12-dev/data/class/SC_CartSession.php	(revision 21650)
+++ branches/version-2_12-dev/data/class/SC_CartSession.php	(revision 21767)
@@ -36,5 +36,5 @@
 
     /* コンストラクタ */
-    function SC_CartSession($cartKey = 'cart') {
+    function __construct($cartKey = 'cart') {
         if (!isset($_SESSION[$cartKey])) {
             $_SESSION[$cartKey] = array();
Index: branches/version-2_12-dev/data/class/SC_CustomerList.php
===================================================================
--- branches/version-2_12-dev/data/class/SC_CustomerList.php	(revision 21755)
+++ branches/version-2_12-dev/data/class/SC_CustomerList.php	(revision 21767)
@@ -29,6 +29,6 @@
     var $arrColumnCSV;
 
-    function SC_CustomerList($array, $mode = '') {
-        parent::SC_SelectSql($array);
+    function __construct($array, $mode = '') {
+        parent::__construct($array);
 
         $masterData = new SC_DB_MasterData_Ex();
Index: branches/version-2_12-dev/data/class/SC_SelectSql.php
===================================================================
--- branches/version-2_12-dev/data/class/SC_SelectSql.php	(revision 21684)
+++ branches/version-2_12-dev/data/class/SC_SelectSql.php	(revision 21767)
@@ -37,5 +37,5 @@
 
     //--　コンストラクタ。
-    function SC_SelectSql($array = '') {
+    function __construct($array = '') {
         if (is_array($array)) {
             $this->arrSql = $array;
Index: branches/version-2_12-dev/data/class/SC_Customer.php
===================================================================
--- branches/version-2_12-dev/data/class/SC_Customer.php	(revision 21750)
+++ branches/version-2_12-dev/data/class/SC_Customer.php	(revision 21767)
@@ -29,7 +29,4 @@
     /** 会員情報 */
     var $customer_data;
-
-    function SC_Customer() {
-    }
 
     function getCustomerDataFromEmailPass($pass, $email, $mobile = false) {
Index: branches/version-2_12-dev/data/class/helper/SC_Helper_CSV.php
===================================================================
--- branches/version-2_12-dev/data/class/helper/SC_Helper_CSV.php	(revision 21757)
+++ branches/version-2_12-dev/data/class/helper/SC_Helper_CSV.php	(revision 21767)
@@ -29,5 +29,5 @@
      * デフォルトコンストラクタ.
      */
-    function SC_Helper_CSV() {
+    function __construct() {
         $this->init();
     }
Index: branches/version-2_12-dev/data/class/helper/SC_Helper_Transform.php
===================================================================
--- branches/version-2_12-dev/data/class/helper/SC_Helper_Transform.php	(revision 21596)
+++ branches/version-2_12-dev/data/class/helper/SC_Helper_Transform.php	(revision 21767)
@@ -47,5 +47,5 @@
      * @return void
      */
-    public function SC_Helper_Transform($source) {
+    public function __construct($source) {
         $this->objDOM = new DOMDocument();
         $this->objDOM->strictErrorChecking = false;
Index: branches/version-2_12-dev/data/class/helper/SC_Helper_Mail.php
===================================================================
--- branches/version-2_12-dev/data/class/helper/SC_Helper_Mail.php	(revision 21750)
+++ branches/version-2_12-dev/data/class/helper/SC_Helper_Mail.php	(revision 21767)
@@ -37,5 +37,5 @@
      * コンストラクタ.
      */
-    function SC_Helper_Mail() {
+    function __construct() {
         $masterData = new SC_DB_MasterData_Ex();
         $this->arrMAILTPLPATH =  $masterData->getMasterData('mtb_mail_tpl_path');
Index: branches/version-2_12-dev/data/class/helper/SC_Helper_Session.php
===================================================================
--- branches/version-2_12-dev/data/class/helper/SC_Helper_Session.php	(revision 21750)
+++ branches/version-2_12-dev/data/class/helper/SC_Helper_Session.php	(revision 21767)
@@ -25,5 +25,5 @@
      * 各関数をセッションハンドラに保存する
      */
-    function SC_Helper_Session() {
+    function __construct() {
         $this->objDb = new SC_Helper_DB_Ex();
         session_set_save_handler(array(&$this, 'sfSessOpen'),
Index: branches/version-2_12-dev/data/class/SC_Query.php
===================================================================
--- branches/version-2_12-dev/data/class/SC_Query.php	(revision 21729)
+++ branches/version-2_12-dev/data/class/SC_Query.php	(revision 21767)
@@ -47,5 +47,5 @@
      * @param boolean $new 新規に接続を行うかどうか
      */
-    function SC_Query($dsn = '', $force_run = false, $new = false) {
+    function __construct($dsn = '', $force_run = false, $new = false) {
 
         if ($dsn == '') {
Index: branches/version-2_12-dev/data/class/SC_Session.php
===================================================================
--- branches/version-2_12-dev/data/class/SC_Session.php	(revision 21704)
+++ branches/version-2_12-dev/data/class/SC_Session.php	(revision 21767)
@@ -44,5 +44,5 @@
 
     /* コンストラクタ */
-    function SC_Session() {
+    function __construct() {
         // セッション情報の保存
         if (isset($_SESSION['cert'])) {
Index: branches/version-2_12-dev/data/class/SC_UploadFile.php
===================================================================
--- branches/version-2_12-dev/data/class/SC_UploadFile.php	(revision 21755)
+++ branches/version-2_12-dev/data/class/SC_UploadFile.php	(revision 21767)
@@ -58,5 +58,5 @@
 
     // ファイル管理クラス
-    function SC_UploadFile($temp_dir, $save_dir) {
+    function __construct($temp_dir, $save_dir) {
         $this->temp_dir = rtrim($temp_dir, '/') . '/';
         $this->save_dir = rtrim($save_dir, '/') . '/';
Index: branches/version-2_12-dev/data/class/SC_CheckError.php
===================================================================
--- branches/version-2_12-dev/data/class/SC_CheckError.php	(revision 21717)
+++ branches/version-2_12-dev/data/class/SC_CheckError.php	(revision 21767)
@@ -32,5 +32,5 @@
 
     // チェック対象の値が含まれる配列をセットする。
-    function SC_CheckError($array = '') {
+    function __construct($array = '') {
         if ($array != '') {
             $this->arrParam = $array;
Index: branches/version-2_12-dev/data/class/SC_PageNavi.php
===================================================================
--- branches/version-2_12-dev/data/class/SC_PageNavi.php	(revision 21514)
+++ branches/version-2_12-dev/data/class/SC_PageNavi.php	(revision 21767)
@@ -42,5 +42,5 @@
 
     // コンストラクタ
-    function SC_PageNavi($now_page, $all_row, $page_row, $func_name, $navi_max = NAVI_PMAX, $urlParam = '', $display_number = true) {
+    function __construct($now_page, $all_row, $page_row, $func_name, $navi_max = NAVI_PMAX, $urlParam = '', $display_number = true) {
         $this->arrPagenavi['mode'] = 'search';
 
Index: branches/version-2_12-dev/data/class/SC_SendMail.php
===================================================================
--- branches/version-2_12-dev/data/class/SC_SendMail.php	(revision 21753)
+++ branches/version-2_12-dev/data/class/SC_SendMail.php	(revision 21767)
@@ -35,5 +35,5 @@
 
     // コンストラクタ
-    function SC_SendMail() {
+    function __construct() {
         $this->arrRecip = array();
         $this->to = '';
Index: branches/version-2_12-dev/data/class/SC_Response.php
===================================================================
--- branches/version-2_12-dev/data/class/SC_Response.php	(revision 21745)
+++ branches/version-2_12-dev/data/class/SC_Response.php	(revision 21767)
@@ -45,7 +45,4 @@
      */
     var $encoding;
-
-    function SC_Response() {
-    }
 
     /**
