Feb 03

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

Post to Twitter Post to Digg

written by objects \\ tags: , ,

Dec 22

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’.

Post to Twitter Post to Digg

written by objects \\ tags: , , ,

Dec 12

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
});

Post to Twitter Post to Digg

written by objects \\ tags: , , ,