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

(-)a/installer/data/mysql/atomicupdate/Bug_21934_add_shibbolethName_preference.perl (-1 / +11 lines)
Line 0 Link Here
0
- 
1
$DBversion = 'XXX';
2
if( CheckVersion( $DBversion ) ) {
3
    $dbh->do(q{
4
        INSERT IGNORE INTO systempreferences
5
        ( variable,value,options,explanation,type)
6
        VALUES
7
        ('shibbolethName','',NULL,'Specify the name for Shibboleth accounts, "Shibboleth" will be used if blank','Free')
8
    });
9
    SetVersion( $DBversion );
10
    print "Upgrade to $DBversion done (Bug 21934 - Add shibbolethName system preference)\n";
11
}

Return to bug 21934