customize

Helpdesk for my helpdesk software

Moderator: mkoch227

Post Reply
elitedreamr
Posts: 3
Joined: Sun Sep 09, 2007 6:59 pm

customize

Post by elitedreamr »

Script URL: internal
Version of script: .094
Hosting company: self
URL of phpinfo.php:
URL of session_test.php:
What terms did you try when SEARCHING for a solution:

Write your message below:

Is there a way to mask out the passwords that it lists on the admin console? I tinkered with the code in manage_users.php but I could not seem to find it. Also, is there a way to change "customer" to "user" and "Staff" to something else?



Thanks in advance, and thanks for the cool script.
rbbigdog
Posts: 19
Joined: Fri Aug 24, 2007 1:36 am

Post by rbbigdog »

Try this...

Change the bolded wording here in your english.inc.php file to whatever you like.

$hesklang['staff']='Staff';
$hesklang['customer']='Customer';

You can just put some asteriks here in your manage_users.php file (replacing the SQL call)

echo <<<EOC
<tr>
<td class="$color">$myuser[name]</td>
<td class="$color"><a href="mailto:$myuser[email]">$myuser[email]</a></td>
<td class="$color">$myuser[user]</td>
<td class="$color">*******</td>
<td class="$color">$myuser[isadmin]</td>
<td class="$color" align="center">$edit_code</td>
<td class="$color" align="center">$remove_code</td>
</tr>

Always save a copy of your files before you make changes to them (that way you can go back to a working copy in case something gets messed up when your editing the files).

Hope this helps!

RB
elitedreamr
Posts: 3
Joined: Sun Sep 09, 2007 6:59 pm

Post by elitedreamr »

That worked! Thanks man!
Post Reply