Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CiviImport - Fix table description #26590

Merged
merged 1 commit into from
Jun 21, 2023

Conversation

colemanw
Copy link
Member

Overview

Fixes faulty string logic when composing import description.

@civibot
Copy link

civibot bot commented Jun 21, 2023

(Standard links)

@civibot civibot bot added the master label Jun 21, 2023
@demeritcowboy demeritcowboy merged commit 2eff32c into civicrm:master Jun 21, 2023
@@ -118,7 +118,7 @@ function _civiimport_civicrm_get_import_tables(): array {
'user_job_id' => (int) $tables->id,
'created_date' => $tables->created_date,
'expires_date' => $tables->expires_date,
'title' => ts('Import Job') . (int) $tables->id,
'title' => ts('Import Job') . $tables->id,
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should there be a space in there, and/or using a placeholder? And also this is ts but the one above is E::ts.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yea good point @demeritcowboy
See #26593

@colemanw colemanw deleted the civiimportFix branch June 21, 2023 23:45
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants