Show
Ignore:
Timestamp:
08/09/05 01:23:02 (7 years ago)
Author:
alexx
Message:

* remove last "domain dependency" (hard coded domain)
* replace hard coded IP or login (for debug/administration purpose) by configuration array $configadmin_login? and $configadmin_ip?
* replace hard coded email by $configemail?
* manage smarty var by $_SMARTY (that will be assigned on time at the end of script), dotnode-*.php from the root has been modified
* fixe gettext file to reflect change into terms that contain an hard coded email
* some minor change

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/dotnode-action.php

    r1 r10  
    6262                header("HTTP/1.1 403 Forbidden"); 
    6363                print $_SERVER["PHP_SELF"].": Action forbidden<br />\n"; 
    64                 if($_SERVER['REMOTE_ADDR'] == MY_IP) 
     64                if($_SERVER['REMOTE_ADDR'] == $config['admin_ip']) 
    6565                        print ACTIONSPATH.'/'.$action;  
    6666        }