PHP7.2/7.3への対応

SQLのエクスポートをしようとするとこの様なエラーが出るように…
php7.2/7.3になって文法がいろいろ変わったせいだと思われる。
該当箇所を修正するとエラーが無くなりました。

count()関係の変更
Warning in ./libraries/plugin_interface.lib.php#532
count(): Parameter must be an array or an object that implements Countable

/usr/share/phpmyadmin/libraries/plugin_interface.lib.php

- if($options!= null && count($options)> 0){
+ if($options!= null && count((array)$options)> 0){

どどんとふ:背景色の変更方法

どどんとふの背景色を変えたい人は意外と多いようです。
方法が幾つかありますので、改めてご紹介。
それぞれ、swf本体を編集しコンパイルして使用して下さい。

変更方法その1: src_actionScript\DodondoF.mxml

<mx:Application
   xmlns:mx="http://www.adobe.com/2006/mxml"
   xmlns:torgtaitai="*"
   pageTitle="{Language.s.title}"
   applicationComplete="setup()"
   layout="absolute"
   fontSize="{Config.fontSize}"
+  backgroundColor=”#a87777″ // この行を挿入
>

変更方法その2: src_actionScript\DodondoF.mxml

<mx:Application
   xmlns:mx="http://www.adobe.com/2006/mxml"
   xmlns:torgtaitai="*"
   pageTitle="{Language.s.title}"
   applicationComplete="setup()"
   layout="absolute"
   fontSize="{Config.fontSize}"
>
↓コメントを消して以下を挿入。
<mx:Style>
   Application {
   backgroundColor: #7e949f; //デフォルト色の指定
   backgroundImage: null;   //グラデーションの無効化
   }
</mx:Style>

画像なしを指定することで背景色のグラデーションが消えます。
背景に画像を使用する場合は、関連記事を参照して下さい。

参考例 :英国メイドサーバー
関連記事:DodontoF.swfの編集 / UI上で背景色の変更 / 背景画像の変更