We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3614839 commit 09a4d94Copy full SHA for 09a4d94
classes/Visualizer/Render/Page/Data.php
@@ -446,7 +446,12 @@ class="dashicons dashicons-lock"></span></h2>
446
447
<?php $this->getPermissionsLink( $this->chart->ID ); ?>
448
449
- <li class="viz-group bottom-fixed" id="vz-chart-copyright">Visualizer © <?php echo date( 'Y', current_time( 'timestamp' ) ); ?></li>
+ <li class="viz-group bottom-fixed" id="vz-chart-copyright">Visualizer ©
450
+ <?php
451
+ // phpcs:ignore WordPress.DateTime.RestrictedFunctions.date_date, WordPress.DateTime.CurrentTimeTimestamp.Requested
452
+ echo date( 'Y', current_time( 'timestamp' ) );
453
+ ?>
454
+ </li>
455
</ul>
456
<?php
457
// changed by Ash/Upwork
0 commit comments