Login     Sign up
profile views
Jcow Master (@falcone)
Join date: Sep 2nd 2010
Community posts: 917
View Profile
Send Message

dashboard module, function my_account

wrong db-table is used

[code]
$res = sql_query("select * from ".tb()."profiles where id='{$client['id']}'");
[/code]

has to be

[code]
$res = sql_query("select * from ".tb()."pages where id='{$client['id']}'");
[/code]

173 months ago
john mor (@johninhell)
Join date: Oct 15th 2010
Community posts: 159
View Profile
Send Message

include 'includes/libs/dashboard.module.php';

n nothing else :(...

173 months ago
john mor (@johninhell)
Join date: Oct 15th 2010
Community posts: 159
View Profile
Send Message

thnxc :)

173 months ago
john mor (@johninhell)
Join date: Oct 15th 2010
Community posts: 159
View Profile
Send Message

thnxc bro :-

finally i got that from :-
includes/libs/dashboard.module.php';

sorry if im still a nob :) :D

173 months ago