diff --git a/gulliver/system/class.g.php b/gulliver/system/class.g.php index 495b923d6..8af53c15d 100644 --- a/gulliver/system/class.g.php +++ b/gulliver/system/class.g.php @@ -1,9 +1,10 @@ * @access public * @parameter string lang * @return void - * - * @note Refactored By Erik A.O. in Sep 9th, 2010 */ function LoadTranslationObject($lang = SYS_LANG){ $defaultTranslations = Array(); @@ -2479,7 +2478,6 @@ class G ################################################################################################ # Added for compatibility betweek aplication called from web Entry that uses just WS functions - # @By neyek ################################################################################################ if( $params != NULL ){ @@ -2552,8 +2550,7 @@ class G * Xml parse collection functions * Returns a associative array within the xml structure and data * - * @Author Erik Amaru Ortiz - * @Date Aug 24th, 2009 + * @author Erik Amaru Ortiz */ function xmlParser(&$string) { $parser = xml_parser_create(); @@ -2697,10 +2694,10 @@ class G /** * Inflects a string with accented characters and other characteres not suitable for file names, by defaul replace with undescore * - * @Author Erik Amaru Ortiz - * @Param (string) string to convert - * @Param (string) character for replace - * @Param (array) additional characteres map + * @author Erik Amaru Ortiz + * @param (string) string to convert + * @param (string) character for replace + * @param (array) additional characteres map * */ function inflect($string, $replacement = '_', $map = array()) { @@ -2775,7 +2772,7 @@ class G /** * Get the temporal directory path on differents O.S. i.e. /temp -> linux, C:/Temp -> win - * @By + * @author */ function getSysTemDir() { if ( !function_exists('sys_get_temp_dir') ){ @@ -2809,7 +2806,7 @@ class G * Get the content of a compose pmos web service response * Returns an array when has a valid reponse, if the response is invalid returns an object containing a status_code and message properties. * - * @By + * @author */ function PMWSCompositeResponse($oResp, $prop) { $Resp = new stdClass(); @@ -2863,7 +2860,6 @@ class G * Validate and emai address in complete forms, * * @author Erik A.O. - * @date Apr 29th, 2010 * i.e. if the param. is 'erik a.o. ' * -> returns a object within $o->email => erik@colosa.com and $o->name => erik A.O. in other case returns false * @@ -2894,7 +2890,6 @@ class G * JSON encode * * @author Erik A.O. - * @date Apr 29th, 2010 */ function json_encode($Json){ if( function_exists('json_encode') ){ @@ -2910,7 +2905,6 @@ class G * JSON decode * * @author Erik A.O. - * @date Apr 29th, 2010 */ function json_decode($Json){ if( function_exists('json_decode') ){ diff --git a/gulliver/system/class.headPublisher.php b/gulliver/system/class.headPublisher.php index 72d5f6587..4ee57816e 100644 --- a/gulliver/system/class.headPublisher.php +++ b/gulliver/system/class.headPublisher.php @@ -1,9 +1,10 @@ * @package gulliver.system * @access public - * @dependencies none */ class Helper{