1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-05-14 19:45:21 +02:00

[ticket/10411] Rename template variable CUR_ to CURRENT_

PHPBB3-10411
This commit is contained in:
Joas Schilling 2012-12-06 14:28:52 +01:00
parent b4db972840
commit 780a8c98ac
2 changed files with 2 additions and 2 deletions

View File

@ -108,7 +108,7 @@
<p>{L_TEAMPAGE_EXPLAIN}</p> <p>{L_TEAMPAGE_EXPLAIN}</p>
<!-- IF S_TEAMPAGE_CATEGORY and CUR_CATEGORY_NAME --><p><strong><a href="{U_ACTION}">{L_TEAMPAGE}</a> &raquo; {CUR_CATEGORY_NAME}</strong></p><!-- ENDIF --> <!-- IF S_TEAMPAGE_CATEGORY and CURRENT_CATEGORY_NAME --><p><strong><a href="{U_ACTION}">{L_TEAMPAGE}</a> &raquo; {CURRENT_CATEGORY_NAME}</strong></p><!-- ENDIF -->
<table cellspacing="1"> <table cellspacing="1">
<col class="col1" /><col class="col2" /><col class="col2" /> <col class="col1" /><col class="col2" /><col class="col2" />

View File

@ -948,7 +948,7 @@ class acp_groups
if ($row['teampage_id'] == $category_id) if ($row['teampage_id'] == $category_id)
{ {
$template->assign_vars(array( $template->assign_vars(array(
'CUR_CATEGORY_NAME' => $row['teampage_name'], 'CURRENT_CATEGORY_NAME' => $row['teampage_name'],
)); ));
continue; continue;
} }