Changeset 5310

Show
Ignore:
Timestamp:
12/18/08 01:45:28 (7 months ago)
Author:
jwage
Message:

[1.0, 1.1] Fixes issue with compound filters (closes #1751)

Location:
branches
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • branches/1.0/lib/Doctrine/Record/Filter/Compound.php

    r5281 r5310  
    7070            } 
    7171        } 
     72        throw new Doctrine_Record_UnknownPropertyException(sprintf('Unknown record property / related component "%s" on "%s"', $name, get_class($record))); 
    7273    } 
    7374 
     
    9192            } 
    9293        } 
     94        throw new Doctrine_Record_UnknownPropertyException(sprintf('Unknown record property / related component "%s" on "%s"', $name, get_class($record))); 
    9395    } 
    9496} 
  • branches/1.1/lib/Doctrine/Record/Filter/Compound.php

    r5281 r5310  
    7070            } 
    7171        } 
     72        throw new Doctrine_Record_UnknownPropertyException(sprintf('Unknown record property / related component "%s" on "%s"', $name, get_class($record))); 
    7273    } 
    7374 
     
    9192            } 
    9293        } 
     94        throw new Doctrine_Record_UnknownPropertyException(sprintf('Unknown record property / related component "%s" on "%s"', $name, get_class($record))); 
    9395    } 
    9496}