Skip to content
This repository has been archived by the owner on Jul 5, 2023. It is now read-only.

Commit

Permalink
Swap correct HTTP error code labels in tracker fields
Browse files Browse the repository at this point in the history
  • Loading branch information
philipashlock committed Apr 3, 2015
1 parent 0382a5f commit 9d2c08d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions application/models/campaign_model.php
Original file line number Diff line number Diff line change
Expand Up @@ -274,14 +274,14 @@ public function tracker_model() {
$model->pdl_link_3xx->label = "Quality Check: Redirected links";
$model->pdl_link_3xx->type = "string";

$model->pdl_link_4xx = clone $field;
$model->pdl_link_4xx->label = "Quality Check: Error links";
$model->pdl_link_4xx->type = "string";

$model->pdl_link_5xx = clone $field;
$model->pdl_link_5xx->label = "Quality Check: Broken links";
$model->pdl_link_5xx->label = "Quality Check: Error links";
$model->pdl_link_5xx->type = "string";

$model->pdl_link_4xx = clone $field;
$model->pdl_link_4xx->label = "Quality Check: Broken links";
$model->pdl_link_4xx->type = "string";

$model->pdl_growth = clone $field;
$model->pdl_growth->label = "Percentage growth in records since last quarter";
$model->pdl_growth->type = "string";
Expand Down

0 comments on commit 9d2c08d

Please sign in to comment.