no message

This commit is contained in:
hellcat 2025-06-11 17:42:01 +08:00
parent 9a0445236b
commit c833b5b366

View File

@ -902,7 +902,9 @@ class Book extends Base {
public function rag($aParam)
{
$iNo = $aParam["aOption"][1] ?? null;
$sRag = $aParam["aArg"][1] ?? null;
$aRag = $aParam["aArg"] ?? null;
$sRag = implode(" ", $aRag);
return $this->_rag($iNo, $sRag);
}