I’m afraid that we don’t understand what you mean? You want the 1.0.* admin management to go back to the .9 version’s admin? Unfortunately that is not gonna happen as they are working to make the admin management identical to wordpress.
No, i mean that in 0.9 have a text Forum was started X ago, where x 1 year, 2 months… Is it possible to move this text to 1.0? Sorry my poor English.
I understand what you are saying. I believe it does say that in the footer?
You mean the overall installation age?
You can also get that from the Mini-Stats plugin (among other info).
https://bbpress.org/plugins/topic/mini-stats/
Yes, but i like this in admin pages index.php. How i create this manually or is this come to bbPress 1.0.3 or 1.0.4 etc?
I’ve put a ticket into Trac for you. If Sam agrees, it might show up in 1.1
If you simply must have it now, you can try making a plugin:
<?php
add_action( 'bb_admin_notices' , 'forums_started');
function forums_started() {printf('<p>'.__('Forums started %s ago.').'</p>', bb_get_inception()); }
?>