/adei/trunk

To get this branch, use:
bzr branch http://darksoft.org/webbzr/adei/trunk

« back to all changes in this revision

Viewing changes to classes/request.php

  • Committer: Suren A. Chilingaryan
  • Date: 2008-08-13 00:07:23 UTC
  • Revision ID: csa@dside.dyndns.org-20080813000723-abfxqyhnvbs01yb6
Data filtering support

Show diffs side-by-side

added added

removed removed

Lines of Context:
296
296
    return $opts->Get($prop, $default);
297
297
 }
298
298
 
299
 
 function GetGroupOption($prop, LOGGROUP &$grp = NULL, $default = NULL) {
 
299
 function GetGroupOption($prop, LOGGROUP $grp = NULL, $default = NULL) {
300
300
    $opts = $this->GetGroupOptions($grp);
301
301
    return $opts->Get($prop, $default);
302
302
 }