Jump to content

HellMind

Member
  • Posts

    4
  • Joined

  • Last visited

Everything posted by HellMind

  1. How should I add language files to a server module? http://forum.whmcs.com/showthread.php?46151-Translate-extra-page-from-server-module I found no language in $_SESSION var isn't there any way to add a custom translation like in addons modules?
  2. I want to store a large data in a customfield. Its well stored, but when I show it within a function using $params I see its trunked at the post of the | char. How can I store something that got '|'? I found this code: on includes/customfieldfunctions.php if (( $fieldtype != "link" && strpos( $customfieldval, "|" ) )) { $customfieldval = explode( "|", $customfieldval ); $customfieldval = trim( $customfieldval[1] ); } Why this needs to be done? How should I scape that '|' ?
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use & Guidelines and understand your posts will initially be pre-moderated