Unescape the HREF attribute's text before passing it to NSURL which does not expect...
[adiumx.git] / Source / ESPersonalPreferencesPlugin.m
blob91f1c0d6dfcfeea4f6076b41f3774eb6701f19c6
1 //
2 //  ESPersonalPreferencesPlugin.m
3 //  Adium
4 //
5 //  Created by Evan Schoenberg on 12/18/05.
6 //
8 #import "ESPersonalPreferencesPlugin.h"
9 #import "ESPersonalPreferences.h"
10 #import <Adium/AIPreferenceControllerProtocol.h>
11 #import <Adium/AIAccount.h>
12 #import <AIUtilities/AIDictionaryAdditions.h>
14 @implementation ESPersonalPreferencesPlugin
16 /*!
17  * @brief Install the plugin
18  */
19 - (void)installPlugin
21         [[adium preferenceController] registerDefaults:[NSDictionary dictionaryNamed:@"PersonalPreferencesDefaults" 
22                                                                                                                                                 forClass:[self class]]  
23                                                                                   forGroup:GROUP_ACCOUNT_STATUS];
25     [[ESPersonalPreferences preferencePaneForPlugin:self] retain];      
28 @end