|
Lines 18435-18446
if ( CheckVersion($DBversion) ) {
Link Here
|
| 18435 |
$DBversion = '18.12.00.069'; |
18435 |
$DBversion = '18.12.00.069'; |
| 18436 |
if( CheckVersion( $DBversion ) ) { |
18436 |
if( CheckVersion( $DBversion ) ) { |
| 18437 |
|
18437 |
|
| 18438 |
use Koha::Plugins; |
18438 |
$dbh->do(q{ |
| 18439 |
|
18439 |
INSERT INTO plugin_data |
| 18440 |
my @plugins = Koha::Plugins->new({ enable_plugins => 1 })->GetPlugins({ all => 1 }); |
18440 |
(plugin_class, plugin_key, plugin_value) |
| 18441 |
foreach my $plugin ( @plugins ) { |
18441 |
SELECT |
| 18442 |
$plugin->enable; |
18442 |
plugin_class, |
| 18443 |
} |
18443 |
'__ENABLED__', |
|
|
18444 |
1 |
| 18445 |
FROM plugin_data |
| 18446 |
WHERE plugin_key='__INSTALLED_VERSION__' |
| 18447 |
}); |
| 18444 |
|
18448 |
|
| 18445 |
# Always end with this (adjust the bug info) |
18449 |
# Always end with this (adjust the bug info) |
| 18446 |
SetVersion( $DBversion ); |
18450 |
SetVersion( $DBversion ); |
| 18447 |
- |
|
|