Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found
Select Git revision
  • main
  • v0.0.1
  • v0.0.10
  • v0.0.11
  • v0.0.12
  • v0.0.2
  • v0.0.3
  • v0.0.4
  • v0.0.5
  • v0.0.6
  • v0.0.7
  • v0.0.8
  • v0.0.9
13 results

Target

Select target project
  • noblogs/ai-simplesitestats-plugin
1 result
Select Git revision
  • main
  • v0.0.1
  • v0.0.10
  • v0.0.11
  • v0.0.12
  • v0.0.2
  • v0.0.3
  • v0.0.4
  • v0.0.5
  • v0.0.6
  • v0.0.7
  • v0.0.8
  • v0.0.9
13 results
Show changes
Commits on Source (2)
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
* Plugin Name: ai-simplesitestats * Plugin Name: ai-simplesitestats
* Plugin URI: https://git.autistici.org/noblogs/ai-simplesitestats-plugin * Plugin URI: https://git.autistici.org/noblogs/ai-simplesitestats-plugin
* Description: Show simple site statistics * Description: Show simple site statistics
* Version: 0.0.8 * Version: 0.0.9
* Author: Autistici/Inventati * Author: Autistici/Inventati
* Author URI: https://www.autistici.org/ * Author URI: https://www.autistici.org/
* License: MIT * License: MIT
...@@ -82,7 +82,7 @@ class StatisticsPage { ...@@ -82,7 +82,7 @@ class StatisticsPage {
echo '<div>'; echo '<div>';
echo '<label for="'. $name . '_field">' . $label . '</label>'; echo '<label for="'. $name . '_field">' . $label . '</label>';
echo '<select name="' . $name . '" id="' . $name . '_field">'; echo '<select name="' . $name . '" id="' . $name . '_field">';
for ($i = 0; $i < len($choices); $i++) { for ($i = 0; $i < count($choices); $i++) {
echo '<option value="' . $choices[$i] . '"'; echo '<option value="' . $choices[$i] . '"';
if ($choices[$i] === $value) { if ($choices[$i] === $value) {
echo ' selected'; echo ' selected';
......