public
Description: Ambition adapter for ActiveLdap
Clone URL: git://github.com/automatthew/ambitious_activeldap.git
adjusted query kick to actually match spec, hey!
automatthew (author)
Thu Jan 31 12:00:11 -0800 2008
commit  9eae508b723848892c2f4444c52a496a964a32c3
tree    bdf38dae73620918304c245dc9bf985b1084d503
parent  f2b5bea2ef1338c4890d5cfd0934b640cdc2289b
...
4
5
6
7
 
 
 
 
8
9
10
...
4
5
6
 
7
8
9
10
11
12
13
0
@@ -4,7 +4,10 @@ module Ambition
0
       class Query
0
 
0
         def kick
0
- owner.find(:all, :filter => self.to_s)
0
+ options = {}
0
+ string = to_s
0
+ options[:filter] = string unless string.empty?
0
+ owner.find(:all, options)
0
         end
0
 
0
         def size

Comments

    No one has commented yet.