2009-06-13 12:07:36 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
function cpm_action_skip_first_run() {
|
|
|
|
global $cpm_config;
|
|
|
|
|
|
|
|
$cpm_config->messages[] = __("<strong>No directories were created.</strong> You'll need to create directories on your own.", 'comicpress-manager');
|
|
|
|
|
2009-08-28 12:42:37 +00:00
|
|
|
$cpm_config->did_first_run = true;
|
|
|
|
|
2009-06-13 12:07:36 +00:00
|
|
|
cpm_read_information_and_check_config();
|
|
|
|
}
|
|
|
|
|
|
|
|
?>
|