mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
6abe65bfdc
Summary: If you have private replies on and a Macro reply handler set, we try to access `getMailKey()` and fail. See P1039 for a trace. (Thanks to @Korvin for picking this up.) Test Plan: Set configuration, repro'd the exception, applied the patch, then disabled/enabled a macro. Reviewers: btrahan Reviewed By: btrahan CC: Korvin, aran Differential Revision: https://secure.phabricator.com/D7896
23 lines
493 B
PHP
23 lines
493 B
PHP
<?php
|
|
|
|
echo "Adding mailkeys to macros.\n";
|
|
|
|
$table = new PhabricatorFileImageMacro();
|
|
$conn_w = $table->establishConnection('w');
|
|
$iterator = new LiskMigrationIterator($table);
|
|
foreach ($iterator as $macro) {
|
|
$id = $macro->getID();
|
|
|
|
echo "Populating macro {$id}...\n";
|
|
|
|
if (!$macro->getMailKey()) {
|
|
queryfx(
|
|
$conn_w,
|
|
'UPDATE %T SET mailKey = %s WHERE id = %d',
|
|
$table->getTableName(),
|
|
Filesystem::readRandomCharacters(20),
|
|
$id);
|
|
}
|
|
}
|
|
|
|
echo "Done.\n";
|