Changeset 14083
- Timestamp:
- 12/21/07 22:00:20 (10 months ago)
- Files:
-
- trunk/midcom/build/class.JavaScriptPacker.php (modified) (1 diff)
- trunk/midcom/com.magnettechnologies.contactgrabber/lib/gmail/libgmailer.php (modified) (1 diff)
- trunk/midcom/midcom.core/globals.php (modified) (1 diff)
- trunk/midcom/midcom.core/midcom/core/group.php (modified) (2 diffs)
- trunk/midcom/midcom.core/midcom/core/group_midgard.php (modified) (4 diffs)
- trunk/midcom/midcom.core/midcom/core/group_virtual.php (modified) (2 diffs)
- trunk/midcom/midcom.core/midcom/core/user.php (modified) (11 diffs)
- trunk/midcom/midcom.core/midcom/helper/_basicnav.php (modified) (1 diff)
- trunk/midcom/midcom.core/midcom/helper/mailtemplate.php (modified) (2 diffs)
- trunk/midcom/midcom.core/midcom/helper/metadata.php (modified) (2 diffs)
- trunk/midcom/midcom.core/midcom/helper/misc.php (modified) (3 diffs)
- trunk/midcom/midcom.core/midcom/services/cache.php (modified) (1 diff)
- trunk/midcom/midcom.core/midcom/services/cache/module/nap.php (modified) (1 diff)
- trunk/midcom/midcom.core/support/autoconf.php (modified) (2 diffs)
- trunk/midcom/midcom.helper.datamanager/datatype_communityhtml.php (modified) (1 diff)
- trunk/midcom/midcom.helper.datamanager/datatype_unixdate.php (modified) (1 diff)
- trunk/midcom/midcom.helper.datamanager2/callback/select/grouplister.php (modified) (1 diff)
- trunk/midcom/midcom.helper.datamanager2/callback/select/personlister.php (modified) (1 diff)
- trunk/midcom/midcom.helper.datamanager2/type/image.php (modified) (1 diff)
- trunk/midcom/midcom.helper.datamanager2/type/select.php (modified) (1 diff)
- trunk/midcom/midcom.helper.datamanager2/type/video.php (modified) (1 diff)
- trunk/midcom/midcom.helper.xml/toarray.php (modified) (1 diff)
- trunk/midcom/midgard.admin.sitegroup/creation/host.php (modified) (3 diffs)
- trunk/midcom/net.nehmer.account/handler/maintain.php (modified) (1 diff)
- trunk/midcom/net.nehmer.comments/midcom/interfaces.php (modified) (1 diff)
- trunk/midcom/net.nehmer.jobmarket/locale/default.de.txt (modified) (1 diff)
- trunk/midcom/net.nehmer.jobmarket/locale/default.en.txt (modified) (1 diff)
- trunk/midcom/net.nehmer.static/handler/autoindex.php (modified) (1 diff)
- trunk/midcom/net.nemein.registrations/config/schemadb_default.inc (modified) (1 diff)
- trunk/midcom/net.nemein.registrations/event.php (modified) (1 diff)
- trunk/midcom/net.nemein.registrations/locale/default.de.txt (modified) (3 diffs)
- trunk/midcom/net.nemein.registrations/locale/default.en.txt (modified) (3 diffs)
- trunk/midcom/net.nemein.registrations/locale/default.fi.txt (modified) (3 diffs)
- trunk/midcom/net.nemein.registrations/locale/default.sv.txt (modified) (3 diffs)
- trunk/midcom/net.nemein.registrations/registration.php (modified) (2 diffs)
- trunk/midcom/no.odindata.quickform/config/schemadb_default.inc (modified) (1 diff)
- trunk/midcom/no.odindata.quickform2/emailgenerator.php (modified) (8 diffs)
- trunk/midcom/no.odindata.quickform2/style/email.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/midcom/build/class.JavaScriptPacker.php
r12078 r14083 199 199 private function _analyze($script, $regexp, $encode) { 200 200 // analyse 201 // retr eive all words in the script201 // retrieve all words in the script 202 202 $all = array(); 203 203 preg_match_all($regexp, $script, $all); trunk/midcom/com.magnettechnologies.contactgrabber/lib/gmail/libgmailer.php
r13625 r14083 4147 4147 // $raw["cs"][12-$less_cs] // may be 10 what is this?? array 4148 4148 // $raw["cs"][13-$less_cs] // may be 11 what is this?? integer/bool? 4149 // $raw["cs"][14-$less_cs] // alwa syone less than 8 (one less than total messages in conv)4149 // $raw["cs"][14-$less_cs] // always one less than 8 (one less than total messages in conv) 4150 4150 4151 4151 $this->conv_labels = array (); trunk/midcom/midcom.core/globals.php
r14082 r14083 16 16 17 17 /** 18 * The main MidCOM applica iton class.18 * The main MidCOM application class. 19 19 * 20 20 * @global midcom_application $GLOBALS['midcom'] trunk/midcom/midcom.core/midcom/core/group.php
r11359 r14083 66 66 67 67 /** 68 * The constructor retrieves the group i ndentified by its name from the database and68 * The constructor retrieves the group identified by its name from the database and 69 69 * prepares the object for operation. 70 70 * … … 183 183 /** 184 184 * This function will return a MidCOM DBA level storage object for the current group. Be aware, 185 * that depending on ACL information, the retri val of the user may fail.185 * that depending on ACL information, the retrieval of the user may fail. 186 186 * 187 187 * Also, as outlined in the member $_storage, not all groups may have a DBA object associated trunk/midcom/midcom.core/midcom/core/group_midgard.php
r12638 r14083 24 24 25 25 /** 26 * The constructor retrieves the group i ndentified by its name from the database and26 * The constructor retrieves the group identified by its name from the database and 27 27 * prepares the object for operation. 28 28 * … … 62 62 { 63 63 debug_push_class(__CLASS__, __FUNCTION__); 64 debug_add("Failed to retr eive the group GUID {$id}: " . mgd_errstr(), MIDCOM_LOG_INFO);64 debug_add("Failed to retrieve the group GUID {$id}: " . mgd_errstr(), MIDCOM_LOG_INFO); 65 65 debug_pop(); 66 66 return false; … … 73 73 { 74 74 debug_push_class(__CLASS__, __FUNCTION__); 75 debug_add("Failed to retr eive the group GUID {$id}: " . mgd_errstr(), MIDCOM_LOG_INFO);75 debug_add("Failed to retrieve the group GUID {$id}: " . mgd_errstr(), MIDCOM_LOG_INFO); 76 76 debug_pop(); 77 77 return false; … … 84 84 { 85 85 debug_push_class(__CLASS__, __FUNCTION__); 86 debug_add("Failed to retr eive the group ID {$id}: " . mgd_errstr(), MIDCOM_LOG_INFO);86 debug_add("Failed to retrieve the group ID {$id}: " . mgd_errstr(), MIDCOM_LOG_INFO); 87 87 debug_pop(); 88 88 return false; trunk/midcom/midcom.core/midcom/core/group_virtual.php
r13590 r14083 43 43 44 44 /** 45 * The constructor retrieves the virtual group i ndentified by its identifier by loading45 * The constructor retrieves the virtual group identified by its identifier by loading 46 46 * the corresponding component. 47 47 * … … 174 174 if (! $members) 175 175 { 176 // Silently ignore failed membership retri vals, they were already logged.176 // Silently ignore failed membership retrievals, they were already logged. 177 177 continue; 178 178 } trunk/midcom/midcom.core/midcom/core/user.php
r13590 r14083 12 12 * manipulate accounts, instead, this is an abstraction used in the ACL system. 13 13 * 14 * You must not create these object es directly. Instead, use the factory method14 * You must not create these objects directly. Instead, use the factory method 15 15 * $_MIDCOM->auth->get_user($id), where $id is any valid constructor argument 16 16 * for a midcom_baseclasses_database_person. … … 47 47 * 48 48 * @var string 49 * @acc cess public49 * @access public 50 50 */ 51 51 var $name = null; … … 57 57 * 58 58 * @var string 59 * @acc cess public59 * @access public 60 60 */ 61 61 var $rname = null; … … 91 91 92 92 /** 93 * This array lists all groups the user is a member in order d by their inheritance94 * chain. The first element in the array is alwa s the top-level group, while the last93 * This array lists all groups the user is a member in ordered by their inheritance 94 * chain. The first element in the array is always the top-level group, while the last 95 95 * one is always a member of $_direct_groups. This is therefore a multilevel array and is 96 96 * indexed by the direct group id's (midcom_core_group id's, not Midgard IDs!) of the … … 162 162 163 163 /** 164 * The constructor retrieves the user i ndentified by its name from the database and164 * The constructor retrieves the user identified by its name from the database and 165 165 * prepares the object for operation. 166 166 * … … 211 211 { 212 212 debug_push_class(__CLASS__, __FUNCTION__); 213 debug_add("Failed to retr eive the person GUID {$id}: " . mgd_errstr(), MIDCOM_LOG_INFO);213 debug_add("Failed to retrieve the person GUID {$id}: " . mgd_errstr(), MIDCOM_LOG_INFO); 214 214 debug_pop(); 215 215 return false; … … 222 222 { 223 223 debug_push_class(__CLASS__, __FUNCTION__); 224 debug_add("Failed to retr eive the person GUID {$id}: " . mgd_errstr(), MIDCOM_LOG_INFO);224 debug_add("Failed to retrieve the person GUID {$id}: " . mgd_errstr(), MIDCOM_LOG_INFO); 225 225 debug_pop(); 226 226 return false; … … 233 233 { 234 234 debug_push_class(__CLASS__, __FUNCTION__); 235 debug_add("Failed to retr eive the person ID {$id}: " . mgd_errstr(), MIDCOM_LOG_INFO);235 debug_add("Failed to retrieve the person ID {$id}: " . mgd_errstr(), MIDCOM_LOG_INFO); 236 236 debug_pop(); 237 237 return false; … … 352 352 353 353 /** 354 * Loads all groups the user is a direct member and assign es them to the _direct_groups member.354 * Loads all groups the user is a direct member and assigns them to the _direct_groups member. 355 355 * 356 356 * @access protected … … 514 514 * 515 515 * 1. A valid group object (subclass of midcom_core_group) 516 * 2. A group or vgroup string identif er, matching the regex ^v?group:516 * 2. A group or vgroup string identifier, matching the regex ^v?group: 517 517 * 3. A valid midcom group name 518 518 * … … 554 554 /** 555 555 * This function will return a MidCOM DBA level storage object for the current user. Be aware, 556 * that depending on ACL information, the retri val of the user may fail.556 * that depending on ACL information, the retrieval of the user may fail. 557 557 * 558 558 * @return midcom_db_person The user which is associated with this record or false if the object cannot be accessed. trunk/midcom/midcom.core/midcom/helper/_basicnav.php
r14002 r14083 501 501 $nodedata[MIDCOM_NAV_OBJECT] = $topic; 502 502 503 // Temporary compatib lity value503 // Temporary compatibility value 504 504 $nodedata[MIDCOM_NAV_VISIBLE] = true; 505 505 trunk/midcom/midcom.core/midcom/helper/mailtemplate.php
r13945 r14083 13 13 * set and sends it using the PEAR Mail classes. 14 14 * 15 * <b>Prerequisit s</b>15 * <b>Prerequisites</b> 16 16 * 17 17 * - PEAR Package: Mail … … 39 39 * actual array. 40 40 * 41 * Again, you can acc cess the (whole) array using "__KEY__". In that case you will41 * Again, you can access the (whole) array using "__KEY__". In that case you will 42 42 * get a formatted output of all keys and values, consisting of "SUBKEY: VALUE" 43 43 * entries. The value gets word-wrapped and indented automatically at about 76 trunk/midcom/midcom.core/midcom/helper/metadata.php
r13625 r14083 43 43 * - <b>MidgardPerson approver:</b> The person that approved/unapproved the object. Set automatically through approve/unapprove. 44 44 * 45 * <b>Example Usage, Metadata Retri val</b>45 * <b>Example Usage, Metadata Retrieval</b> 46 46 * 47 47 * <code> … … 336 336 * "0" is rewritten to "1" to use the MidgardAdministrator account instead. 337 337 * 338 * @param string $key The key to retri ve.338 * @param string $key The key to retrieve. 339 339 * @access private 340 340 */ trunk/midcom/midcom.core/midcom/helper/misc.php
r13625 r14083 12 12 * or in the database and returns its content or code-field, respecitvly. 13 13 * 14 * Prefix the snippet Path with 'file:' for retri val of a file relative to14 * Prefix the snippet Path with 'file:' for retrieval of a file relative to 15 15 * MIDCOM_ROOT; omit it to get the code field of a Snippet. 16 16 * … … 48 48 * or in the database and returns its content or code-field, respecitvly. 49 49 * 50 * Prefix the snippet Path with 'file:' for retri val of a file relative to50 * Prefix the snippet Path with 'file:' for retrieval of a file relative to 51 51 * MIDCOM_ROOT; omit it to get the code field of a Snippet. 52 52 * … … 534 534 { 535 535 debug_add("Possible Failure to unserialize the attachment {$name}, unserialize returned false.", MIDCOM_LOG_INFO); 536 debug_add("PHP Er or Message was: {$php_errormsg}", MIDCOM_LOG_INFO);536 debug_add("PHP Error Message was: {$php_errormsg}", MIDCOM_LOG_INFO); 537 537 debug_print_r("Content Object:", $object); 538 538 debug_print_r("Attachment {$name}:", $att); trunk/midcom/midcom.core/midcom/services/cache.php
r13945 r14083 20 20 * The system is two fold: 21 21 * 22 * There are cache backends, which are responsible for the actual storage and retri val of22 * There are cache backends, which are responsible for the actual storage and retrieval of 23 23 * cache information, and cache modules, which provide caching services to the application 24 24 * developer. trunk/midcom/midcom.core/midcom/services/cache/module/nap.php
r14082 r14083 116 116 * passed to the function are loaded. 117 117 * 118 * For compatib lity with separated AIS/on-site Page MidCOM installations, the method118 * For compatibility with separated AIS/on-site Page MidCOM installations, the method 119 119 * will load the topic from the database and map all requests to a topic which is 120 120 * of a midcom.admin.content type to the corresponding root content topic. Note, that 121 * this is actually a bug in the core's context se apration, which I have not yet121 * this is actually a bug in the core's context separation, which I have not yet 122 122 * found. Normally, all instances of basicnav should work within an on-site-context 123 123 * and therefore this "fallback" should not be necessary. Unfortunately, sometimes trunk/midcom/midcom.core/support/autoconf.php
r3894 r14083 2 2 3 3 /** 4 * Autoconf Script which scans the system for all required utilities and prerequisit s.4 * Autoconf Script which scans the system for all required utilities and prerequisites. 5 5 * Prints all related <i>/etc/midgard/midcom.conf</i> lines for the autodetected information. 6 6 * … … 9 9 * be found. 10 10 * 11 * If no argument is present, the det mined configuration is only written to stdout after the11 * If no argument is present, the determined configuration is only written to stdout after the 12 12 * debugging messages. Otherwise, the filename specified on the command line will be replaced 13 13 * with the autodetected configuration. trunk/midcom/midcom.helper.datamanager/datatype_communityhtml.php
r14082 r14083 86 86 87 87 $href_search = Array ( 88 "/([^\@]+)\@([\w-]+(\.[\w-]+){1,})/", /* E-Mail Adresse */88 "/([^\@]+)\@([\w-]+(\.[\w-]+){1,})/", /* E-Mail addresse */ 89 89 "|(https?://[\w/.:%-]*)|i", /* URL */ 90 90 ); trunk/midcom/midcom.helper.datamanager/datatype_unixdate.php
r14082 r14083 25 25 * 26 26 * @var bool 27 * @acc cess private27 * @access private 28 28 */ 29 29 var $_store_as_iso_timestamp; trunk/midcom/midcom.helper.datamanager2/callback/select/grouplister.php
r12722 r14083 23 23 * 24 24 * - <i>string key_field:</i> The field used as key. Valid options are id, guid 25 * midcomid and name. Defaults to guid. 'midcomid' is a group:$identif er combination25 * midcomid and name. Defaults to guid. 'midcomid' is a group:$identifier combination 26 26 * suitable for usage in the MidCOM ACL system. 27 27 * - <i>string value_field:</i> The field used as value. Valid is any field available trunk/midcom/midcom.helper.datamanager2/callback/select/personlister.php
r12722 r14083 23 23 * 24 24 * - <i>string key_field:</i> The field used as key. Valid options are id, guid 25 * midcomid and name. Defaults to guid. 'midcomid' is a person:$identif er combination25 * midcomid and name. Defaults to guid. 'midcomid' is a person:$identifier combination 26 26 * suitable for usage in the MidCOM ACL system. 27 27 * - <i>string value_field:</i> The field used as value. Valid is any field available trunk/midcom/midcom.helper.datamanager2/type/image.php
r13738 r14083 509 509 * Overwrites image content from file, recalculates size etc 510 510 * 511 * @param $identif er image identifier to update511 * @param $identifier image identifier to update 512 512 * @param $file file to use 513 513 * @return boolean indicating success/failure trunk/midcom/midcom.helper.datamanager2/type/select.php
r14082 r14083 29 29 * comma separated listing of unknown options during loading, which will be kept in 30 30 * that simple string representation. Otherwise, unknown keys will be forbidden, on 31 * validations they cause a validation er or, on loading they are dropped silently.31 * validations they cause a validation error, on loading they are dropped silently. 32 32 * This option is set to false by default. 33 33 * - <i>bool allow_multiple:</i> If this flag is set, you may select more then one trunk/midcom/midcom.helper.datamanager2/type/video.php
r13625 r14083 514 514 * Overwrites image content from file, recalculates size etc 515 515 * 516 * @param $identif er image identifier to update516 * @param $identifier image identifier to update 517 517 * @param $file file to use 518 518 * @return boolean indicating success/failure trunk/midcom/midcom.helper.xml/toarray.php
r14082 r14083 152 152 * @param resource parser 153 153 * @param string name of the xml tag 154 * @param array attrs the attrib tues found in the tag.154 * @param array attrs the attributes found in the tag. 155 155 * @access private 156 156 */ trunk/midcom/midgard.admin.sitegroup/creation/host.php
r14082 r14083 531 531 * Abstract out the object creation as it differs in 1.7 and 1.8. 532 532 * @param string classname 533 * @param array ( attributename => value ) attrib tues to be created533 * @param array ( attributename => value ) attributes to be created 534 534 * @param string name of the attribute to save the storage in . 535 535 * @param int the sitegroup the object should have … … 650 650 /** 651 651 * @param string tablename 652 * @param array ( attributename => value ) attrib tues to be created652 * @param array ( attributename => value ) attributes to be created 653 653 * @param string name of the attribute to save the storage in . 654 654 * @param int the sitegroup the object should have … … 757 757 * 758 758 * @param string tablename 759 * @param array ( attributename => value ) attrib tues to be created759 * @param array ( attributename => value ) attributes to be created 760 760 * @param string name of the attribute to save the storage in . 761 761 * @param int the sitegroup the object should have trunk/midcom/net.nehmer.account/handler/maintain.php
r12964 r14083 707 707 * 708 708 * We assume that the username has been validated by the QuickForm already, 709 * in case we cannot retr eive the record, we just trigger a generate_error.709 * in case we cannot retrieve the record, we just trigger a generate_error. 710 710 * 711 711 * @param string $username The name of the user who wants his password reset. trunk/midcom/net.nehmer.comments/midcom/interfaces.php
r13331 r14083 18 18 * 19 19 * The component stores the data in its own table, indexed by the object guid they are 20 * bound to. There is no threading support, comments are order d by creation date.20 * bound to. There is no threading support, comments are ordered by creation date. 21 21 * 22 22 * Commenting is currently only allowed for registered users for security reasons. trunk/midcom/net.nehmer.jobmarket/locale/default.de.txt
r2560 r14083 28 28 ---STRINGEND 29 29 30 ---STRING edit applica iton30 ---STRING edit application 31 31 Gesuch bearbeiten 32 32 ---STRINGEND trunk/midcom/net.nehmer.jobmarket/locale/default.en.txt
r2536 r14083 28 28 ---STRINGEND 29 29 30 ---STRING edit applica iton30 ---STRING edit application 31 31 Edit application 32 32 ---STRINGEND trunk/midcom/net.nehmer.static/handler/autoindex.php
r13093 r14083 144 144 * - string lastmod: The localized last modified date. 145 145 * 146 * @return Array Autoindex object es as outlined above146 * @return Array Autoindex objects as outlined above 147 147 */ 148 148 function _load_autoindex_data() trunk/midcom/net.nemein.registrations/config/schemadb_default.inc
r13945 r14083 140 140 ( 141 141 // COMPONENT-REQUIRED 142 'title' => 'emailad ress',142 'title' => 'emailaddress', 143 143 'storage' => 'email', 144 144 'required' => true, trunk/midcom/net.nemein.registrations/event.php
r13625 r14083 658 658 $_MIDCOM->auth->require_do('midgard:parameters', $registration); 659 659 660 // Check registrar privileges (for OpenPSA 1 compatib lity)660 // Check registrar privileges (for OpenPSA 1 compatibility) 661 661 $_MIDCOM->auth->require_do('midgard:update', $registrar_object); 662 662 $_MIDCOM->auth->require_do('midgard:parameters', $registrar_object); trunk/midcom/net.nemein.registrations/locale/default.de.txt
r3053 r14083 156 156 ---STRINGEND 157 157 158 ---STRING email ad ress invalid158 ---STRING email address invalid 159 159 Bitte geben Sie eine gÃŒltige E-Mail Adresse ein. 160 160 ---STRINGEND … … 164 164 ---STRINGEND 165 165 166 ---STRING emailad ress166 ---STRING emailaddress 167 167 E-Mail Adresse 168 168 ---STRINGEND … … 408 408 ---STRINGEND 409 409 410 ---STRING this email ad ress is already registered410 ---STRING this email address is already registered 411 411 Zu dieser E-Mail Adresse existiert bereits ein Benutzerkonto. 412 412 ---STRINGEND trunk/midcom/net.nemein.registrations/locale/default.en.txt
r5497 r14083 168 168 ---STRINGEND 169 169 170 ---STRING email ad ress invalid170 ---STRING email address invalid 171 171 Please enter a valid E-Mail address. 172 172 ---STRINGEND … … 176 176 ---STRINGEND 177 177 178 ---STRING emailad ress178 ---STRING emailaddress 179 179 E-Mail address 180 180 ---STRINGEND … … 440 440 ---STRINGEND 441 441 442 ---STRING this email ad ress is already registered442 ---STRING this email address is already registered 443 443 An account has already been created using this E-Mail address. 444 444 ---STRINGEND trunk/midcom/net.nemein.registrations/locale/default.fi.txt
r5497 r14083 168 168 ---STRINGEND 169 169 170 ---STRING email ad ress invalid170 ---STRING email address invalid 171 171 Ole hyvÀ ja syötÀ oikea sÀhköpostiosoite. 172 172 ---STRINGEND … … 176 176 ---STRINGEND 177 177 178 ---STRING emailad ress178 ---STRING emailaddress 179 179 SÀhköposti 180 180 ---STRINGEND … … 440 440 ---STRINGEND 441 441 442 ---STRING this email ad ress is already registered442 ---STRING this email address is already registered 443 443 TÀllÀ sÀhköpostiosoitteella on jo avattu kÀyttÀjÀtunnus. 444 444 ---STRINGEND trunk/midcom/net.nemein.registrations/locale/default.sv.txt
r1837 r14083 140 140 ---STRINGEND 141 141 142 ---STRING email ad ress invalid142 ---STRING email address invalid 143 143 Var god fyll i en giltig E-post address 144 144 ---STRINGEND … … 148 148 ---STRINGEND 149 149 150 ---STRING emailad ress150 ---STRING emailaddress 151 151 E-post address 152 152 ---STRINGEND … … 332 332 ---STRINGEND 333 333 334 ---STRING this email ad ress is already registered334 ---STRING this email address is already registered 335 335 Ett konto har redans skapats med den hÀr e-post addressen. 336 336 ---STRINGEND trunk/midcom/net.nemein.registrations/registration.php
r13625 r14083 130 130 131 131 /** 132 * Retri ve the registrar object associated with this registration.132 * Retrieve the registrar object associated with this registration. 133 133 * 134 134 * @return net_nemein_registrations_registrar The registrar. … … 141 141 142 142 /** 143 * Retri ve the event object associated with this registration.143 * Retrieve the event object associated with this registration. 144 144 * 145 145 * @return net_nemein_registrations_event The event. trunk/midcom/no.odindata.quickform/config/schemadb_default.inc
r5094 r14083 36 36 'email' => 37 37 array( 38 'message' => 'You have to use a valid email ad ress',38 'message' => 'You have to use a valid email address', 39 39 ) 40 40 ) trunk/midcom/no.odindata.quickform2/emailgenerator.php
r14082 r14083 34 34 35 35 /** 36 * The from adress set in the config as sender ad ress36 * The from adress set in the config as sender address 37 37 * @var string 38 38 */ … … 43 43 var $encoding; 44 44 /** 45 * the rec iept message45 * the receipt message 46 46 * @var string 47 47 */ … … 154 154 155 155 /** 156 * Add the rec iept data156 * Add the receipt data 157 157 * @param $add boolean 158 158 */ … … 177 177 } 178 178 /** 179 * Set to true if the submit er should get a reciept of the179 * Set to true if the submitter should get a receipt of the 180 180 * email 181 181 * @param $send boolean true if mail should be sent … … 187 187 188 188 /** 189 * Sets the rec iept message189 * Sets the receipt message 190 190 * @param $msg string 191 191 */ … … 195 195 } 196 196 /** 197 * The fromad ress197 * The fromaddress 198 198 * @var $from string 199 199 */ … … 209 209 } 210 210 /** 211 * Sets the reply_to ad ress211 * Sets the reply_to address 212 212 * @param $to string 213 213 */ … … 258 258 } 259 259 /** 260 * This function sets the emailad ress that the submitted form will260 * This function sets the emailaddress that the submitted form will 261 261 * be sent to. 262 * @param $to string the mailad ress set in the configuration262 * @param $to string the mailaddress set in the configuration 263 263 */ 264 264 function set_to ( $to ) trunk/midcom/no.odindata.quickform2/style/email.php
r5048 r14083 7 7 // the mail to send to the contact-recepient 8 8 $mail =& $_MIDCOM->get_custom_context_data('mail'); 9 // the rec iept mail9 // the receipt mail 10 10 $reciept =& $_MIDCOM->get_custom_context_data('reciept'); 11 11 $form =& $_MIDCOM->get_custom_context_data('form');
