Pear.Auth のエラー
pearでの下記エラーの修正!!
Deprecated: Assigning the return value of new by reference is deprecated in /usr/share/pear/Auth.php on line 469
下記サイト参照
https://yaplog.jp/ceres_2323/archive/45
該当行は
$obj =& new $storage_class($options);

これの =& を = にするとエラーは出なくなります。

????