| Author |
Message |
kamjul
MD NewNew

Joined: Nov 22, 2006
Posts: 4
Member
|
 Posted:
May 24, 2008 - 08:54 PM |
|
| Post subject: CModsLinks on MDPro |
Okay, so I'm running CModsLinks on MDPro. It's a 1.0.76 MdPro version.
Now, the installation of the module went fine, no problems at all - however, when I go through both the admin section and the user section (more worrying), in places where there are variables at play, I get the actual variables displayed. To make this clear, here's the example:
Where it is supposed to say "There are 1 Links and 1 Categories in the Database, what it says is:
_THEREARE 1 Links _AND 1 _CATEGORIES _INDB
This is not the only script on my MDPRO that does it, but previously these things were happening only in the admin section so I wasn't too bother. But I can't let my users see this. What do I do? Is it something mySQL based or is it about something in the coding or settings or MdPro or the module itself?
I would appreciate any help with this.
Kamil |
|
|
|
 |
Bonzo
MD user level 5


Joined: Sep 15, 2004
Posts: 55
Location: Rome - Italy
bannato
|
 Posted:
May 27, 2008 - 11:11 AM |
|
|
MDPro 1.076 more is not supported.
You must update your version with last version: MDPro 1.0821
However your error has had to the fact that lacks the define for the text _THEREARE, _AND, _CATEGORIES _INDB in the language's file of the module CModsLinks.
Controls that there are the define in these file:
modules/CModsLinks/language (or lang) /eng/global.php
In the file global.php , or similiar, you must insert you must insert how much follows (in any point goes well) if they are not present:
| Code:
|
define('_THEREARE', 'There are');
define('_AND', 'and');
define('_CATEGORIES _INDB', 'Categories in the Database');
|
Bye |
_________________ Bonzo (aka Matteo Carletti)
www.isartegiovagnoli.com - Istituto Statale d'Arte di Sansepolcro e Anghiari
www.agriturismoilsasso.it || www.agriturismoanghiari.it
www.beccacciaiditalia.com |
|
|
 |
|
|
| |