View | Details | Raw Unified | Return to bug 16401
Collapse All | Expand All

(-)a/installer/data/mysql/atomicupdate/bug_16401.perl (-2 / +1 lines)
Lines 1-6 Link Here
1
$DBversion = 'XXX';  # will be replaced by the RM
1
$DBversion = 'XXX';  # will be replaced by the RM
2
if( CheckVersion( $DBversion ) ) {
2
if( CheckVersion( $DBversion ) ) {
3
    $dbh->do( "UPDATE systempreferences SET value = CONCAT('http://', value) WHERE variable = 'staffClientBaseURL' AND value NOT LIKE 'http%'" );
3
    $dbh->do( "UPDATE systempreferences SET value = CONCAT('http://', value) WHERE variable = 'staffClientBaseURL' AND value <> '' AND value NOT LIKE 'http%'" );
4
4
5
    # Always end with this (adjust the bug info)
5
    # Always end with this (adjust the bug info)
6
    SetVersion( $DBversion );
6
    SetVersion( $DBversion );
7
- 

Return to bug 16401