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

(-)a/installer/data/mysql/updatedatabase.pl (-3 / +1 lines)
Lines 7164-7171 if ( CheckVersion($DBversion) ) { Link Here
7164
7164
7165
$DBversion ="3.13.00.XXX";
7165
$DBversion ="3.13.00.XXX";
7166
if ( CheckVersion($DBversion) ) {
7166
if ( CheckVersion($DBversion) ) {
7167
    $dbh->do("INSERT IGNORE INTO systempreferences (variable,value,options,explanation,type) 
7167
    $dbh->do("INSERT IGNORE INTO systempreferences (variable,value,options,explanation,type) VALUES ('NoLoginInstructions', '<h5>Don\'t have a password yet\?</h5> <p> If you don\'t have a password yet, stop by the circulation desk the next time you\'re in the library. We\'ll happily set one up for you.</p> <h5>Don\'t have a library card\?</h5> <p> If you don\'t have a library card, stop by your local library to sign up.  </p>', '60|10', 'Instructions when a person is not connected', 'Textarea')");
7168
    VALUES ('NoLoginInstructions', '<h5>Don\'t have a password yet\?</h5> <p> If you don\'t have a password yet, stop by the circulation desk the next time you\'re in the library. We\'ll happily set one up for you.</p> <h5>Don\'t have a library card\?</h5> <p> If you don\'t have a library card, stop by your local library to sign up.  </p>', '60|10', 'Instructions when a person is not connected', 'Textarea')");
7169
    print "Upgrade to $DBversion done (Bug 10951: Add NoLoginInstructions pref)\n";
7168
    print "Upgrade to $DBversion done (Bug 10951: Add NoLoginInstructions pref)\n";
7170
    SetVersion($DBversion);
7169
    SetVersion($DBversion);
7171
}
7170
}
7172
- 

Return to bug 10951