|
Lines 1-10
Link Here
|
| 1 |
$DBversion = 'XXX'; # will be replaced by the RM |
|
|
| 2 |
if( CheckVersion( $DBversion ) ) { |
| 3 |
$dbh->do(q{ |
| 4 |
UPDATE letter SET |
| 5 |
content = REPLACE(content, "You have reached the maximum number of checkouts possible." , "You have reached the maximum number of renewals possible.") |
| 6 |
WHERE ( code = 'AUTO_RENEWALS' OR code = 'AUTO_RENEWALS_DGST' ); |
| 7 |
}); |
| 8 |
|
| 9 |
NewVersion( $DBversion, 28263, "Update AUTO_RENEWAL too_many message"); |
| 10 |
} |
| 11 |
- |