Quantcast
Channel: Adobe Community : 人気のディスカッション - Dreamweaverコミュニティフォーラム (Japan)
Viewing all articles
Browse latest Browse all 52881

クラス補完時のクラッシュについて

$
0
0

不具合報告フォームを使用したのですが、生憎メールが宛先不明で帰って来てしまいますので、こちらに投稿させていただきます。

以下のコードの7行目に.(ドット)を入力し、下キーを数回押下するか、何らかの文字列を入力しようとするとDwがクラッシュします。

おそらく再現できるかと思います。ファイルはWordPress用の .phpファイルです。

 

<!doctype html>

<html>

<head>

<meta charset="utf-8">

<title></title>

<style>

 

</style>

 

</head>

<body class="<?

if ( is_home() || is_category("mainv") ) {

  print 'home';

} elseif (is_single()) {

  print ('single'.' '."$now_cat_slug");

} elseif(is_category()) {

  print ('category'.' '."$now_cat_slug");

} elseif(is_page()) {

  $page = get_page(get_the_ID());

  $slug = $page->post_name;

  print ('page '."$slug");

}

if ( !is_home() && ( is_category("en") || in_category("en" ) ) ) {

  print (' en');

}

if (is_category($news_cat_array) || in_category($news_cat_array)) {

  print (' news');

}

?>">

 

<? // -------------------------

 

以上、ご確認よろしくお願いいたします。


Viewing all articles
Browse latest Browse all 52881

Trending Articles