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 f0e7944 commit f1e4b72Copy full SHA for f1e4b72
classes/Visualizer/Render/Page/Data.php
@@ -430,7 +430,12 @@ class="dashicons dashicons-lock"></span></h2>
430
431
<?php $this->getPermissionsLink( $this->chart->ID ); ?>
432
433
- <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 ©
434
+ <?php
435
+ // phpcs:ignore WordPress.DateTime.RestrictedFunctions.date_date, WordPress.DateTime.CurrentTimeTimestamp.Requested
436
+ echo date( 'Y', current_time( 'timestamp' ) );
437
+ ?>
438
+ </li>
439
</ul>
440
<?php
441
// changed by Ash/Upwork
0 commit comments