mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-05-18 01:45:25 +00:00
Monotone-Parent: 755524b00e9b962e6240a95f6bfdd559ca240f5a
Monotone-Revision: b37f3f6ae0b2c8936fa170defaec8e6b7c107b85 Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2006-08-14T20:43:55 Monotone-Branch: ca.inverse.sogo
This commit is contained in:
@@ -370,7 +370,7 @@ static BOOL shouldDisplayWeekend = NO;
|
||||
- (BOOL)shouldDisplayRejectedAppointments {
|
||||
NSString *bv;
|
||||
|
||||
bv = [[[self context] request] formValueForKey:@"dr"];
|
||||
bv = [self queryParameterForKey: @"dr"];
|
||||
if (!bv) return NO;
|
||||
return [bv boolValue];
|
||||
}
|
||||
@@ -427,17 +427,15 @@ static BOOL shouldDisplayWeekend = NO;
|
||||
- (id)redirectForUIDsAction {
|
||||
NSMutableString *uri;
|
||||
NSString *uidsString, *loc, *prevMethod, *userFolderID;
|
||||
WORequest *req;
|
||||
id <WOActionResults> r;
|
||||
BOOL useGroups;
|
||||
unsigned index;
|
||||
|
||||
req = [[self context] request];
|
||||
|
||||
uidsString = [req formValueForKey:@"userUIDString"];
|
||||
uidsString = [self queryParameterForKey:@"userUIDString"];
|
||||
uidsString = [uidsString stringByTrimmingWhiteSpaces];
|
||||
[self setQueryParameter: nil forKey: @"userUIDString"];
|
||||
|
||||
prevMethod = [req formValueForKey:@"previousMethod"];
|
||||
prevMethod = [self queryParameterForKey:@"previousMethod"];
|
||||
if(prevMethod == nil)
|
||||
prevMethod = @"";
|
||||
|
||||
@@ -460,6 +458,7 @@ static BOOL shouldDisplayWeekend = NO;
|
||||
[uri appendString:@"Groups/_custom_"];
|
||||
[uri appendString:uidsString];
|
||||
[uri appendString:@"/"];
|
||||
NSLog (@"Group URI = '%@'", uri);
|
||||
}
|
||||
else {
|
||||
/* check if lastPathComponent is the base that we want to have */
|
||||
|
||||
Reference in New Issue
Block a user