diff options
author | Richard Bos <richard@radoeka.nl> | 2008-02-23 20:19:19 (GMT) |
---|---|---|
committer | Richard Bos <richard@radoeka.nl> | 2008-02-23 20:19:19 (GMT) |
commit | 21956abeeb282fc8194495bb930dc1b0de6db0ad (patch) | |
tree | 877b979c1406540d7b60d878dfed97a192d7816e /www/admin | |
parent | 0885da3d839b459726baa85f462bf085c9234495 (diff) | |
download | kolab-webadmin-21956abeeb282fc8194495bb930dc1b0de6db0ad.tar.gz |
changed the hardcoded path to web user interface (/admin)
into a variable: kolab_wui.
Diffstat (limited to 'www/admin')
-rw-r--r-- | www/admin/addressbook/addr.php.in | 2 | ||||
-rw-r--r-- | www/admin/logout.php.in | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/www/admin/addressbook/addr.php.in b/www/admin/addressbook/addr.php.in index 015be50..1554647 100644 --- a/www/admin/addressbook/addr.php.in +++ b/www/admin/addressbook/addr.php.in @@ -175,7 +175,7 @@ if( !$errors ) { unset( $distlists['count'] ); foreach( $distlists as $distlist ) { $dlcn = $distlist['mail'][0]; - $errors[] = sprintf(_("Addressbook entry DN could not be modified, distribution list <a href='@webserver_web_prefix@/admin/distributionlist/list.php?action=modify&dn=%s'>'%s'</a> depends on it. To modify this entry, first remove it from the distribution list."), urlencode($distlist['dn']), $dlcn ); + $errors[] = sprintf(_("Addressbook entry DN could not be modified, distribution list <a href='@kolab_wui@/distributionlist/list.php?action=modify&dn=%s'>'%s'</a> depends on it. To modify this entry, first remove it from the distribution list."), urlencode($distlist['dn']), $dlcn ); } if( !$errors ) { diff --git a/www/admin/logout.php.in b/www/admin/logout.php.in index 6d69593..57b59c6 100644 --- a/www/admin/logout.php.in +++ b/www/admin/logout.php.in @@ -21,7 +21,7 @@ session_start(); session_destroy(); session_unset(); -header('Location: @webserver_web_prefix@/admin/'); +header('Location: @kolab_wui@/'); /* Local variables: |