Ignore:
Timestamp:
12/19/12 16:44:18 (11 years ago)
Author:
douglasz
Message:

Ticket #3236 - Correcoes para Best Practice: Short Open Tag e Best Practice: Always Quote Array Keys.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/phpgwapi/inc/class.matrixview.inc.php

    r7655 r7681  
    104104                        { 
    105105                                $dinfo = getdate(mktime(0,0,0, $this->month+1,0,$this->year)); 
    106                                 $this->day = $dinfo[mday]; 
     106                                $this->day = $dinfo['mday']; 
    107107                        } 
    108108 
     
    200200 
    201201                        $in = getdate(mktime(0,0,0, $this->month+1,0,$this->year)); 
    202                         $this->sumdays = $in[mday]; 
    203                         $this->monthname = $in[month]; 
     202                        $this->sumdays = $in['mday']; 
     203                        $this->monthname = $in['month']; 
    204204 
    205205                        $this->out_monthyear($form_link); 
Note: See TracChangeset for help on using the changeset viewer.