Ignore:
Timestamp:
Sep 15, 2014 9:44:27 PM (10 years ago)
Author:
anonymous
Message:

Beginning the process of adapting codebase to foundation styles.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/services/reset_password.php

    r468 r497  
    44 * For details visit the project site: <http://trac.strangecode.com/codebase/>
    55 * Copyright 2001-2012 Strangecode, LLC
    6  * 
     6 *
    77 * This file is part of The Strangecode Codebase.
    88 *
     
    1111 * Free Software Foundation, either version 3 of the License, or (at your option)
    1212 * any later version.
    13  * 
     13 *
    1414 * The Strangecode Codebase is distributed in the hope that it will be useful, but
    1515 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
    1616 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
    1717 * details.
    18  * 
     18 *
    1919 * You should have received a copy of the GNU General Public License along with
    2020 * The Strangecode Codebase. If not, see <http://www.gnu.org/licenses/>.
     
    3434********************************************************************/
    3535
     36// Redefine include_path including the codebase/services but allow local templates override global ones.
     37ini_set('include_path', join(PATH_SEPARATOR, array(
     38    get_include_path(),
     39    dirname(__FILE__) . '/templates'
     40)));
     41
    3642// The object to validate form input from the user.
    3743require_once 'codebase/lib/FormValidator.inc.php';
    3844$fv = new FormValidator();
     45
     46require_once 'codebase/lib/HTML.inc.php';
    3947
    4048/********************************************************************
     
    8492
    8593include 'header.ihtml';
    86 include 'codebase/services/templates/reset_password.ihtml';
     94include 'reset_password.ihtml';
    8795include 'footer.ihtml';
    8896
Note: See TracChangeset for help on using the changeset viewer.