View Single Post
  #3 (permalink)  
Old 01-09-2009, 02:10 AM
UD2008 UD2008 is offline
Registered User
 
Join Date: Jan 2009
Posts: 3
Thumbs up

I found the solution, in the index.php.

Code:
// Execute the query to retrieve articles
$result = $connector->query('SELECT ID,title FROM intraarticles ORDER BY ID DESC LIMIT 0,5');
The part FROM intraarticles, was cmsarticles, when I changed it to intraarticles (the name of my table) the problem was gone.
Reply With Quote