~ubuntu-branches/ubuntu/wily/phabricator/wily

« back to all changes in this revision

Viewing changes to phabricator/src/applications/config/controller/PhabricatorConfigDatabaseIssueController.php

  • Committer: Package Import Robot
  • Author(s): Richard Sellam
  • Date: 2014-11-01 23:20:06 UTC
  • mfrom: (0.6.1) (0.5.1) (1.2.1) (2.1.2 sid)
  • Revision ID: package-import@ubuntu.com-20141101232006-9rsc6uy3t32oty8r
Tags: 0~git20141101-1
* New upstream version
* renamed translation po files so that they are used (closes: #767636)

Show diffs side-by-side

added added

removed removed

Lines of Context:
133
133
 
134
134
    $errors = array();
135
135
 
136
 
    $errors[] = pht(
137
 
      'IMPORTANT: This feature is in development and the information below '.
138
 
      'is not accurate! Ignore it for now. See T1191.');
139
 
 
140
136
    if (isset($counts[PhabricatorConfigStorageSchema::STATUS_FAIL])) {
141
137
      $errors[] = pht(
142
138
        'Detected %s serious issue(s) with the schemata.',
152
148
    $title = pht('Database Issues');
153
149
 
154
150
    $table_box = id(new PHUIObjectBoxView())
155
 
      ->setHeaderText($title)
 
151
      ->setHeader($this->buildHeaderWithDocumentationLink($title))
156
152
      ->setFormErrors($errors)
157
153
      ->appendChild($table);
158
154