Changeset 2055


Ignore:
Timestamp:
02/23/10 15:13:00 (14 years ago)
Author:
niltonneto
Message:

Ticket #920 - Correção para substituir header.inc por header.session.inc.

Location:
branches/2.0/expressoMail1_2/inc
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • branches/2.0/expressoMail1_2/inc/show_embedded_attach.php

    r1040 r2055  
    11<?php 
    2 if(!isset($GLOBALS['phpgw_info'])){ 
    3         $GLOBALS['phpgw_info']['flags'] = array( 
    4                 'currentapp' => 'expressoMail1_2', 
    5                 'nonavbar'   => true, 
    6                 'noheader'   => true 
    7         ); 
    8 } 
    9 require_once '../../header.inc.php'; 
     2 
     3        require_once '../../header.session.inc.php'; 
    104 
    115        $username = $_SESSION['phpgw_info']['expressomail']['user']['userid']; 
  • branches/2.0/expressoMail1_2/inc/show_img.php

    r1040 r2055  
    11<?php 
    2 if(!isset($GLOBALS['phpgw_info'])){ 
    3         $GLOBALS['phpgw_info']['flags'] = array( 
    4                 'currentapp' => 'expressoMail1_2', 
    5                 'nonavbar'   => true, 
    6                 'noheader'   => true 
    7         ); 
    8 } 
    9 require_once '../../header.inc.php'; 
     2 
     3        require_once '../../header.session.inc.php'; 
    104 
    115        header("Content-Type: image/jpeg"); 
  • branches/2.0/expressoMail1_2/inc/show_thumbs.php

    r1040 r2055  
    11<?php 
    2 if(!isset($GLOBALS['phpgw_info'])){ 
    3         $GLOBALS['phpgw_info']['flags'] = array( 
    4                 'currentapp' => 'expressoMail1_2', 
    5                 'nonavbar'   => true, 
    6                 'noheader'   => true 
    7         ); 
    8 } 
    9 require_once '../../header.inc.php'; 
     2 
     3        require_once '../../header.session.inc.php'; 
    104 
    115        $username = $_SESSION['phpgw_info']['expressomail']['user']['userid']; 
  • branches/2.0/expressoMail1_2/inc/show_user_photo.php

    r1206 r2055  
    11<?php 
    2 if(!isset($GLOBALS['phpgw_info'])){ 
    3         $GLOBALS['phpgw_info']['flags'] = array( 
    4                 'currentapp' => 'expressoMail1_2', 
    5                 'nonavbar'   => true, 
    6                 'noheader'   => true 
    7         ); 
    8 } 
    9 require_once '../../header.inc.php'; 
     2 
     3        require_once '../../header.session.inc.php'; 
    104 
    115 
Note: See TracChangeset for help on using the changeset viewer.