mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 00:42:41 +01:00
47a5ebb4fe
Summary: Re T6049, Correctly implementing mailkey for Phurl Test Plan: Edit Phurl URL, receive email. Reviewers: epriestley, #blessed_reviewers Reviewed By: epriestley, #blessed_reviewers Subscribers: Korvin Differential Revision: https://secure.phabricator.com/D14605
18 lines
408 B
PHP
18 lines
408 B
PHP
<?php
|
|
|
|
$table = new PhabricatorPhurlURL();
|
|
$conn_w = $table->establishConnection('w');
|
|
$iterator = new LiskMigrationIterator($table);
|
|
foreach ($iterator as $url) {
|
|
$id = $url->getID();
|
|
|
|
echo pht('Adding mail key for Phurl %d...', $id);
|
|
echo "\n";
|
|
|
|
queryfx(
|
|
$conn_w,
|
|
'UPDATE %T SET mailKey = %s WHERE id = %d',
|
|
$table->getTableName(),
|
|
Filesystem::readRandomCharacters(20),
|
|
$id);
|
|
}
|