Index: trunk/extensions/ArticleFeedbackv5/ArticleFeedbackv5.php |
— | — | @@ -117,10 +117,10 @@ |
118 | 118 | // Bucket settings for links to the feedback form |
119 | 119 | $wgArticleFeedbackv5LinkBuckets = array( |
120 | 120 | // Users can fall into one of several buckets for links. These are: |
121 | | - // 0: No link; user must scroll to the bottom of the page |
122 | | - // 1: Section bars |
123 | | - // 2: Title bar |
124 | | - // 3: Vertical button |
| 121 | + // -: No link; user must scroll to the bottom of the page |
| 122 | + // A: Section bars |
| 123 | + // B: Title bar |
| 124 | + // C: Vertical button |
125 | 125 | 'buckets' => array( |
126 | 126 | '-' => 0, |
127 | 127 | 'A' => 0, |
Index: trunk/extensions/ArticleFeedbackv5/ArticleFeedbackv5.hooks.php |
— | — | @@ -290,12 +290,6 @@ |
291 | 291 | $ctaId = $wgRequest->getVal( 'articleFeedbackv5_cta_id' ); |
292 | 292 | $bucketId = $wgRequest->getVal( 'articleFeedbackv5_bucket_id' ); |
293 | 293 | |
294 | | -error_log('Tracking!'); |
295 | | -error_log(var_export($feedbackId, true)); |
296 | | -error_log(var_export($ctaId, true)); |
297 | | -error_log(var_export($bucketId, true)); |
298 | | -error_log(var_export($article->getTitle()->getText(), true)); |
299 | | - |
300 | 294 | return true; |
301 | 295 | } |
302 | 296 | |