drupal 7.10に "Business Connect"テーマをインストールしましたが、このテーマは問題なく動作しています。別のテーマをインストールしてもエラーメッセージが表示されない場合は、問題が「Business Connect」テーマのtemplate.phpファイルであることを意味します。drupalで "Business Connect"テーマを使用しているときの定義されていないオフセット1エラー
エラーメッセージ:
Notice: Undefined offset: 1 in businessconnect_process_page() (line 44 of
C:\xampp\htdocs\my-site-name\sites\all\themes\businessconnect\template.php).
Notice: Undefined offset: 2 in businessconnect_process_page() (line 44 of
C:\xampp\htdocs\my-site-name\sites\all\themes\businessconnect\template.php).
Notice: Undefined offset: 3 in businessconnect_process_page() (line 44 of
\C:\xampp\htdocs\my-site-name\sites\all\themes\businessconnect\template.php).
Template.phpコード:
if ($variables['is_front'])
{
$variable=$variables['title'];
$text=(explode(" ", $variable));
$variables['title'] = '<span>'.$text[0].' '.$text[1].' '.'<span class="title_default">'.$text[2].' '.$text[3].'</span>'.'</span>';
}
ライン#44:私に怒っ@hakreのリスクが
$variables['title'] = '<span>'.$text[0].' '.$text[1].' '.'<span class="title_default">'.$text[2].' '.$text[3].'</span>'.'</span>';
誰かが 'E_ALL | 'でプログラムすることを学ぶ必要がある「ビジネス接続」を作成したようです。 E_STRICT' enabled: – rdlowrey
あなたのテーマのベンダーに連絡して問題を話し合ってください。それ以外の場合は、同じテーマのユーザーがここに現れるまで待ってください。これは、それを期待するのに最適な場所ではないかもしれません。 – hakre
また、[FAQを読んでください](http://stackoverflow.com/faq)では、このサイトでどのような種類の質問が受け入れられますか?これはプログラミングサイトですが、特定のテーマではなく、XYZタイプのテーマに関する問題があります。 – hakre