Skip to content
This repository has been archived by the owner on Aug 31, 2023. It is now read-only.

Commit

Permalink
fixes an error on saving the options
Browse files Browse the repository at this point in the history
  • Loading branch information
slambert committed Jan 5, 2011
1 parent b332f7d commit e9996ca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions functions.php
Expand Up @@ -277,8 +277,8 @@ function wpfolio_add_admin() {
function mytheme_admin() { function mytheme_admin() {
global $themename, $shortname, $options; global $themename, $shortname, $options;


if ( $_GET['saved'] ) echo '<div id="message" class="updated fade"><p><strong>'.$themename.' settings saved.</strong></p></div>'; if ( isset($_GET['saved']) && $_GET['saved'] ) echo '<div id="message" class="updated fade"><p><strong>'.$themename.' settings saved.</strong></p></div>';
if ( $_GET['reset'] ) echo '<div id="message" class="updated fade"><p><strong>'.$themename.' settings reset.</strong></p></div>';?> if ( isset($_GET['reset']) && $_GET['reset'] ) echo '<div id="message" class="updated fade"><p><strong>'.$themename.' settings reset.</strong></p></div>';?>




<!-- WPFolio Theme Interface --> <!-- WPFolio Theme Interface -->
Expand Down

0 comments on commit e9996ca

Please sign in to comment.