4images Forum & Community

4images Modifications / Modifikationen => Mods & Plugins (Requests & Discussions) => Topic started by: neverkas on June 08, 2009, 05:01:04 AM

Title: MOD IMAGES? HELP XD
Post by: neverkas on June 08, 2009, 05:01:04 AM
Alguien sabe si se puede utilizar este MOD, en el campo de Título de las imagenes?
http://www.4homepages.de/forum/index.php?topic=13071.0

What if you can use this MOD in the title field of the images?
http://www.4homepages.de/forum/index.php?topic=13071.0
Title: Re: MOD IMAGES? HELP XD
Post by: neverkas on June 17, 2009, 04:30:11 PM
...?  8O
Title: Re: MOD IMAGES? HELP XD
Post by: V@no on June 17, 2009, 04:48:21 PM
in members.php find two times:
Code: [Select]
 if ($image_name == "")  {
Insert above:
Code: [Select]
 if ($user_info['user_level'] != ADMIN && preg_match("#[<>]#", $image_name))
  {
    $error = 1;
    $field_error = preg_replace("/".$site_template->start."field_name".$site_template->end."/siU", str_replace(":", "", $lang['image_name']), $lang['bad_characters']);
    $msg .= (($msg != "") ? "<br />" : "").$field_error;
  }

in lang/<your language>/main.php add:
Code: [Select]
 $lang['bad_characters'] = "Unacceptable characters in {field_name}";


P.S. test it with non-admin account.