Ignore:
Timestamp:
Nov 15, 2014 9:34:39 PM (10 years ago)
Author:
anonymous
Message:

Many auth and crypto changes; various other bugfixes while working on pulso.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/bin/module_maker/module.cli.php

    r468 r500  
    55 * For details visit the project site: <http://trac.strangecode.com/codebase/>
    66 * Copyright 2001-2012 Strangecode, LLC
    7  * 
     7 *
    88 * This file is part of The Strangecode Codebase.
    99 *
     
    1212 * Free Software Foundation, either version 3 of the License, or (at your option)
    1313 * any later version.
    14  * 
     14 *
    1515 * The Strangecode Codebase is distributed in the hope that it will be useful, but
    1616 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
    1717 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
    1818 * details.
    19  * 
     19 *
    2020 * You should have received a copy of the GNU General Public License along with
    2121 * The Strangecode Codebase. If not, see <http://www.gnu.org/licenses/>.
     
    3939
    4040    " . basename($_SERVER['argv'][0]) . " site_directory name_singular name_plural [operation]
    41    
     41
    4242Valid operations include: " . join(', ', $valid_ops) . "
    4343
     
    149149    if (!is_dir("$public_tpl_dir")) {
    150150        die(basename($_SERVER['argv'][0]) . " Error: public_tpl_dir '$public_tpl_dir' directory not found.\n");
    151     }   
     151    }
    152152}
    153153
     
    196196        $type = preg_replace('/^(\w+).*$/', '\\1', $col[1]);
    197197        $default = $col[4];
    198        
     198
    199199        if (mb_strpos($default, '0000') !== false || '0' == $default) {
    200200            $default = '';
Note: See TracChangeset for help on using the changeset viewer.