You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$messenger->addMessage(t('Some rows failed to import, but unable to create directory for error CSV at @csv_directory', $targs), 'error');
we cannot use $targs here because it's not in the scope. @csv_directory is not defined in $targs, we need to use $dir instead $messenger->addMessage(t("Some rows failed to import, but unable to create directory for error CSV at @csv_directory", ['@csv_directory' => $dir]), 'error');
The text was updated successfully, but these errors were encountered:
$messenger->addMessage(t('Some rows failed to import, but unable to create directory for error CSV at @csv_directory', $targs), 'error');
we cannot use $targs here because it's not in the scope. @csv_directory is not defined in $targs, we need to use $dir instead
$messenger->addMessage(t("Some rows failed to import, but unable to create directory for error CSV at @csv_directory", ['@csv_directory' => $dir]), 'error');
The text was updated successfully, but these errors were encountered: