/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: Nicholas Tan Jerome
  • Date: 2015-01-30 22:20:40 UTC
  • Revision ID: nicholas.jerome@kit.edu-20150130222040-b9tvrknbkgbfd0ws
Support overriding of OPTIONS in the LOGGROUP

Show diffs side-by-side

added added

removed removed

Lines of Context:
615
615
 }
616
616
 
617
617
 function GetGroupOption($prop, LOGGROUP $grp = NULL, $default = NULL) {
 
618
    if(isset($grp->options[$prop])) {
 
619
        return $grp->options[$prop];
 
620
    }
618
621
    $opts = $this->GetGroupOptions($grp);
619
622
    return $opts->Get($prop, $default);
620
623
 }