Plugin Directory

Changeset 3220481


Ignore:
Timestamp:
01/10/2025 10:25:32 PM (15 months ago)
Author:
seshelby
Message:

Releasing version 1.0.9

Location:
alumnionline-reunion-website
Files:
15 added
5 edited

Legend:

Unmodified
Added
Removed
  • alumnionline-reunion-website/trunk/alumnionline-reunion-website.php

    r3048643 r3220481  
    66 * Author: AlumniOnline Web Services LLC
    77 * Author URI: https://www.alumnionlineservices.com
    8  * Version: 1.0.8
     8 * Version: 1.0.9
    99 * Text Domain: alumnionline-reunion-website
    1010 * License: GPL v2 - http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
     
    2121 */
    2222if ( ! defined( 'ALUMNIONLINE_REUNION_WEBSITE_VERSION_NUM' ) ) {
    23     define( 'ALUMNIONLINE_REUNION_WEBSITE_VERSION_NUM', '1.0.8' ); // Plugin version constant.
     23    define( 'ALUMNIONLINE_REUNION_WEBSITE_VERSION_NUM', '1.0.9 BETA' ); // Plugin version constant.
    2424}
    2525if ( ! defined( 'ALUMNIONLINE_REUNION_WEBSITE_FOLDER' ) ) {
  • alumnionline-reunion-website/trunk/main.css

    r3037259 r3220481  
    3333 }
    3434 .alumnionline-reunion-website-action-button{
    35     padding: 12px;
    36     padding-top: 8px;
    37     padding-bottom: 10px;
     35    padding: 5px;
     36border-radius: 5px;
    3837 }
    3938 .alumnionline-reunion-website-action-button:hover{
     
    273272   
    274273    margin: auto;
    275     width: 500px;
     274    max-width: 800px;
    276275    margin-bottom: 60px;
    277276}
  • alumnionline-reunion-website/trunk/readme.txt

    r3124223 r3220481  
    33Tags: reunion website, message board, forum, gallery, user management
    44Requires at least: 2.0
    5 Tested up to: 6.6
     5Tested up to: 6.7
    66Requires PHP: 5.5
    7 Stable tag: 1.0.8
     7Stable tag: 1.0.9
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    4848
    4949== Changelog ==
     50= 1.0.9 =
     51* Date: 1/10/2025
     52* Modified various css elements
     53
    5054= 1.0.8 =
    5155* Date: 3/10/2024
  • alumnionline-reunion-website/trunk/res/settings.php

    r3037493 r3220481  
    276276        <label
    277277            for="pagination_limit"><?php esc_html_e( 'Pagination Limit', 'alumnionline-reunion-website' ); ?>
    278             <input id="pagination_limit"
    279             <?php
     278            <input id="pagination_limit" <?php
    280279            if ( isset( $settings['pagination_limit'] ) ) {
    281280                echo 'value="' . esc_attr( $settings['pagination_limit'] ) . '"';
     
    288287        <label
    289288            for="file_size_limit"><?php esc_html_e( 'Max File Size', 'alumnionline-reunion-website' ); ?>
    290             <input id="file_size_limit"
    291             <?php
     289            <input id="file_size_limit" <?php
    292290            if ( isset( $settings['file_size_limit'] ) ) {
    293291                echo 'value="' . esc_attr( $settings['file_size_limit'] ) . '"';
     
    301299        <label for="alumnionline_disable_logging">
    302300            <input type="checkbox" id="alumnionline_disable_logging" value="true"
    303                 name="alumnionline_reunion_website_settings[alumnionline_disable_logging]"
    304                 <?php
     301                name="alumnionline_reunion_website_settings[alumnionline_disable_logging]" <?php
    305302                if ( 'true' === $settings['alumnionline_disable_logging'] ) {
    306303                    echo ' checked ';
     
    316313        <label
    317314            for="alumnionline_maincontent_id"><?php esc_html_e( 'Template Main Content ID', 'alumnionline-reunion-website' ); ?>
    318             <input id="alumnionline_maincontent_id"
    319             <?php
     315            <input id="alumnionline_maincontent_id" <?php
    320316            if ( isset( $settings['alumnionline_maincontent_id'] ) ) {
    321317                echo 'value="' . esc_attr( $settings['alumnionline_maincontent_id'] ) . '"';
     
    326322</div>
    327323
    328     <?php
     324<?php
    329325    // add pro plugin fields.
    330326    apply_filters( 'alumnionline_reunion_website_general_settings_field_callback', '' );
    331327    ?>
    332328
    333     <?php
     329<?php
    334330}
    335331
     
    364360    </form>
    365361</div>
    366     <?php
     362<?php
    367363}
    368364?>
  • alumnionline-reunion-website/trunk/templates/author.php

    r3048642 r3220481  
    1414$settings = alumnionline_reunion_website_get_settings();
    1515if ( isset( $settings['alumnionline_maincontent_id'] ) ) {
    16 $maincontentid = $settings['alumnionline_maincontent_id'];
     16    $maincontentid = $settings['alumnionline_maincontent_id'];
     17} else {
     18    $maincontentid = 'site-content';
    1719}
    18 else $maincontentid = 'site-content';
    1920
    2021?>
    21 <main id="<?php echo esc_attr($maincontentid ); ?>">
     22<main id="<?php echo esc_attr( $maincontentid ); ?>">
    2223    <div class="alumnonline-reunion-plugin-member-wrapper">
    2324        <div class="alumnonline-reunion-plugin-featured-image">
     
    5556
    5657            comments_template();
    57             ?>
     58        ?>
    5859    </div>
    5960</main><!-- #site-content -->
Note: See TracChangeset for help on using the changeset viewer.