Ignore:
Timestamp:
Mar 23, 2006, 2:49:04 AM (18 years ago)
Author:
rvelices
Message:

URL rewrite: 3 options in the config file define behaviour (question mark
removal, file name for picture and .php extension removal)

fix: added unsigned for column in install sql - for the sake of uniformization

change: add_url_param is now add_url_params and takes an array as parameter
instead of a string

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/admin/notification_by_mail.php

    • Property svn:eol-style set to native
    • Property svn:keywords set to Author Date Id Revision
    r1091 r1094  
    88// | branch        : BSF (Best So Far)
    99// | file          : $RCSfile$
    10 // | last update   : $Date: 2005-09-21 00:04:57 +0200 (mer, 21 sep 2005) $
    11 // | last modifier : $Author: plg $
    12 // | revision      : $Revision: 870 $
     10// | last update   : $Date$
     11// | last modifier : $Author$
     12// | revision      : $Revision$
    1313// +-----------------------------------------------------------------------+
    1414// | This program is free software; you can redistribute it and/or modify  |
     
    8787  // Set null mail_address empty
    8888  $query = '
    89 update 
     89update
    9090  '.USERS_TABLE.'
    9191set
     
    282282  array(
    283283    'U_TABSHEET_TITLE' => l10n('nbm_'.$page['mode'].'_mode'),
    284     'U_HELP' => add_url_param(get_root_url().'/popuphelp.php', 'page=notification_by_mail'),
    285     'U_PARAM_MODE' => add_url_param($base_url.get_query_string_diff(array('mode')), 'mode=param'),
    286     'U_SUBSCRIBE_MODE' => add_url_param($base_url.get_query_string_diff(array('mode')), 'mode=subscribe'),
    287     'U_SEND_MODE' => add_url_param($base_url.get_query_string_diff(array('mode')), 'mode=send'),
     284    'U_HELP' => add_url_params(get_root_url().'/popuphelp.php', array('page'=>'notification_by_mail') ),
     285    'U_PARAM_MODE' => add_url_params($base_url.get_query_string_diff(array('mode')), array('mode'=>'param') ),
     286    'U_SUBSCRIBE_MODE' => add_url_params($base_url.get_query_string_diff(array('mode')), array('mode'=>'subscribe') ),
     287    'U_SEND_MODE' => add_url_params($base_url.get_query_string_diff(array('mode')), array('mode'=>'send') ),
    288288    'F_ACTION'=> $base_url.get_query_string_diff(array())
    289289    ));
Note: See TracChangeset for help on using the changeset viewer.