Changeset 20481


Ignore:
Timestamp:
2011/03/04 17:38:08 (13 years ago)
Author:
shutta
Message:

refs #1086
モバイルの時のみタイトルを変更。

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_5-dev/data/class/pages/contact/LC_Page_Contact.php

    r20344 r20481  
    4444    function init() { 
    4545        parent::init(); 
    46         $this->tpl_title = 'お問い合わせ(入力ページ)'; 
     46        if (SC_Display::detectDevice() == DEVICE_TYPE_MOBILE) { 
     47            $this->tpl_title = 'お問い合わせ'; 
     48        } else { 
     49            $this->tpl_title = 'お問い合わせ(入力ページ)'; 
     50        } 
    4751        $this->tpl_page_category = 'contact'; 
    4852        $this->httpCacheControl('nocache'); 
Note: See TracChangeset for help on using the changeset viewer.