You can find the Fedora core release number in /etc/redhat-release

written by objects
\\ tags: etc, fedora, redhat
After upgrading one our clients Wordpress installations to 2.9 we started getting the following notice:
Notice: get_settings is deprecated since version 0.0! Use get_option() instead. in /var/www/wp/wp-includes/functions.php on line 2970
After a bit of digging it was found that the audio-player plugin was the culprit. To fix it just required replacing calls to ‘get_settings’ with ‘get_option’.

written by objects
\\ tags: audio-player, deprecated, get_option, get_settings
Depending on the size of the content in your accordions panes the default settings can result in content being longer than the available space and thus causing a scrollbar to be added. To avoid this try the following settings.
$j("#accordion").accordion({
'fillSpace': true,
'clearStyle': true
});

written by objects
\\ tags: accordion, clearStyle, fillSpace, scrollbar