Changeset 1486 for branches/2.0/workflow


Ignore:
Timestamp:
10/02/09 10:48:35 (15 years ago)
Author:
viani
Message:

Ticket #671 - Inclusao condicional do header.session.inc.php, no modulo workflow - branch 2.0

Location:
branches/2.0/workflow
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/2.0/workflow/controller.php

    r1471 r1486  
    11<?php 
    2         require_once '../header.session.inc.php'; 
     2        if (file_exists('../header.session.inc.php')) { 
     3                require_once '../header.session.inc.php'; 
     4        } 
    35 
    46        /* if there is no session, abort the Ajax call */ 
  • branches/2.0/workflow/inc/common.inc.php

    r1471 r1486  
    11<?php 
    2 require_once dirname(__FILE__) . '/../../header.session.inc.php'; 
     2if (file_exists(dirname(__FILE__) . '/../../header.session.inc.php')) { 
     3        require_once dirname(__FILE__) . '/../../header.session.inc.php'; 
     4} 
    35 
    46/* garante que durante a execução de funções que modificam strings, os 
Note: See TracChangeset for help on using the changeset viewer.