1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-05-18 13:30:08 +02:00

[feature/migrations] Comments for the return in the custom functions

PHPBB3-11318
This commit is contained in:
Nathan Guse 2013-01-12 19:45:20 -06:00
parent dd327ac83e
commit dfcf9966e9
2 changed files with 2 additions and 0 deletions

View File

@ -83,6 +83,7 @@ class phpbb_db_migration_data_3_0_11_rc1 extends phpbb_db_migration
WHERE ' . $this->db->sql_in_set('msg_id', $delete_pms);
$this->sql_query($sql);
// Return false to have the Migrator call this function again
return false;
}
}

View File

@ -62,6 +62,7 @@ class phpbb_db_migration_data_3_0_7_rc2 extends phpbb_db_migration
return;
}
// Return the next start, will be sent to $start when this function is called again
return $start + $limit;
}
}