You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
370 B
15 lines
370 B
<?php
|
|
require_once INCLUDE_DIR.'class.migrater.php';
|
|
|
|
class MigrateDbSession extends MigrationTask {
|
|
var $description = "Migrate to database-backed sessions";
|
|
|
|
function run($max_time) {
|
|
# How about 'dis for a hack?
|
|
$session = new DbSessionBackend();
|
|
$session->write(session_id(), session_encode());
|
|
}
|
|
}
|
|
|
|
return 'MigrateDbSession';
|
|
?>
|