Changeset 2657263
- Timestamp:
- 01/13/2022 03:51:38 PM (4 years ago)
- Location:
- proofratings
- Files:
-
- 2 edited
-
tags/1.0.7/inc/class-proofratings.php (modified) (2 diffs)
-
trunk/inc/class-proofratings.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
proofratings/tags/1.0.7/inc/class-proofratings.php
r2650552 r2657263 154 154 PRIMARY KEY (`id`) 155 155 );"); 156 157 $this->registration('activate'); 156 158 } 157 159 … … 160 162 * @since 1.0.6 161 163 */ 162 function registration( ) {164 function registration($source = 'registration') { 163 165 $request_url = add_query_arg(array( 164 166 'name' => get_bloginfo( 'name' ), 165 167 'email' => get_bloginfo( 'admin_email' ), 166 'url' => get_site_url() 168 'url' => get_site_url(), 169 'source' => $source 167 170 ), PROOFRATINGS_API_URL . '/register'); 168 171 -
proofratings/trunk/inc/class-proofratings.php
r2650552 r2657263 154 154 PRIMARY KEY (`id`) 155 155 );"); 156 157 $this->registration('activate'); 156 158 } 157 159 … … 160 162 * @since 1.0.6 161 163 */ 162 function registration( ) {164 function registration($source = 'registration') { 163 165 $request_url = add_query_arg(array( 164 166 'name' => get_bloginfo( 'name' ), 165 167 'email' => get_bloginfo( 'admin_email' ), 166 'url' => get_site_url() 168 'url' => get_site_url(), 169 'source' => $source 167 170 ), PROOFRATINGS_API_URL . '/register'); 168 171
Note: See TracChangeset
for help on using the changeset viewer.