Skip to content

Commit 3d29ee6

Browse files
committed
GitLab: Remove calls to deprecated helper_alternate_class()
1 parent 706d0e0 commit 3d29ee6

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

SourceGitlab/SourceGitlab.php

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ public function register() {
1919
$this->name = plugin_lang_get( 'title' );
2020
$this->description = plugin_lang_get( 'description' );
2121

22-
$this->version = '1.0.3';
22+
$this->version = '1.0.4';
2323
$this->requires = array(
2424
'MantisCore' => '1.3.0',
25-
'Source' => '0.16',
25+
'Source' => '1.3.0,
2626
);
2727
2828
$this->author = 'Johannes Goehr';
@@ -120,23 +120,23 @@ public function update_repo_form( $p_repo ) {
120120
$t_master_branch = 'master';
121121
}
122122
?>
123-
<tr <?php echo helper_alternate_class() ?>>
123+
<tr>
124124
<td class="category"><?php echo plugin_lang_get( 'hub_root' ) ?></td>
125125
<td><input name="hub_root" maxlength="250" size="40" value="<?php echo string_attribute( $t_hub_root ) ?>"/></td>
126126
</tr>
127-
<tr <?php echo helper_alternate_class() ?>>
127+
<tr>
128128
<td class="category"><?php echo plugin_lang_get( 'hub_repoid' ) ?></td>
129129
<td><input name="hub_repoid" maxlength="250" size="40" value="<?php echo string_attribute( $t_hub_repoid ) ?>"/></td>
130130
</tr>
131-
<tr <?php echo helper_alternate_class() ?>>
131+
<tr>
132132
<td class="category"><?php echo plugin_lang_get( 'hub_reponame' ) ?></td>
133133
<td><input name="hub_reponame" maxlength="250" size="40" value="<?php echo string_attribute( $t_hub_reponame ) ?>"/></td>
134134
</tr>
135-
<tr <?php echo helper_alternate_class() ?>>
135+
<tr>
136136
<td class="category"><?php echo plugin_lang_get( 'hub_app_secret' ) ?></td>
137137
<td><input name="hub_app_secret" maxlength="250" size="40" value="<?php echo string_attribute( $t_hub_app_secret ) ?>"/></td>
138138
</tr>
139-
<tr <?php echo helper_alternate_class() ?>>
139+
<tr>
140140
<td class="category"><?php echo plugin_lang_get( 'master_branch' ) ?></td>
141141
<td><input name="master_branch" maxlength="250" size="40" value="<?php echo string_attribute( $t_master_branch ) ?>"/></td>
142142
</tr>

0 commit comments

Comments
 (0)