AccessPress Instagram Feed - Version 2.0.2

Version Description

  • Done the prevention of the files for direct access for the frontend files.
Download this release

Release Info

Developer Access Keys
Plugin Icon 128x128 AccessPress Instagram Feed
Version 2.0.2
Comparing to
See all releases

Code changes from version 2.0.1 to 2.0.2

accesspress-instagram-feed.php CHANGED
@@ -4,7 +4,7 @@ defined( 'ABSPATH' ) or die( "No script kiddies please!" );
4
  Plugin name: AccessPress Instagram Feed
5
  Plugin URI: https://accesspressthemes.com/wordpress-plugins/accesspress-instagram-feed/
6
  Description: A plugin to add various instagram widgets with dynamic configuration options.
7
- Version: 2.0.1
8
  Author: AccessPress Themes
9
  Author URI: http://accesspressthemes.com
10
  Text Domain:accesspress-instagram-feed
@@ -13,7 +13,7 @@ License: GPLv2 or later
13
  */
14
  //Decleration of the necessary constants for plugin
15
  if( !defined( 'APIF_VERSION' ) ) {
16
- define( 'APIF_VERSION', '2.0.1' );
17
  }
18
 
19
  if( !defined( 'APIF_IMAGE_DIR' ) ) {
4
  Plugin name: AccessPress Instagram Feed
5
  Plugin URI: https://accesspressthemes.com/wordpress-plugins/accesspress-instagram-feed/
6
  Description: A plugin to add various instagram widgets with dynamic configuration options.
7
+ Version: 2.0.2
8
  Author: AccessPress Themes
9
  Author URI: http://accesspressthemes.com
10
  Text Domain:accesspress-instagram-feed
13
  */
14
  //Decleration of the necessary constants for plugin
15
  if( !defined( 'APIF_VERSION' ) ) {
16
+ define( 'APIF_VERSION', '2.0.2' );
17
  }
18
 
19
  if( !defined( 'APIF_IMAGE_DIR' ) ) {
inc/frontend/instagram-feed.php CHANGED
@@ -1,4 +1,5 @@
1
  <?php
 
2
  global $apif_settings, $insta;
3
  $apif_settings = get_option( 'apif_settings' );
4
  $username = !empty($apif_settings['username']) ? $apif_settings['username'] : ''; // your username
1
  <?php
2
+ defined( 'ABSPATH' ) or die( "No script kiddies please!" );
3
  global $apif_settings, $insta;
4
  $apif_settings = get_option( 'apif_settings' );
5
  $username = !empty($apif_settings['username']) ? $apif_settings['username'] : ''; // your username
inc/frontend/instagram-masaic-light.php CHANGED
@@ -1,4 +1,5 @@
1
  <?php
 
2
  global $apif_settings, $insta;
3
  $apif_settings = get_option( 'apif_settings' );
4
  $username = $apif_settings['username']; // your username
1
  <?php
2
+ defined( 'ABSPATH' ) or die( "No script kiddies please!" );
3
  global $apif_settings, $insta;
4
  $apif_settings = get_option( 'apif_settings' );
5
  $username = $apif_settings['username']; // your username
inc/frontend/instagram-slider.php CHANGED
@@ -1,4 +1,5 @@
1
  <?php
 
2
  global $apif_settings, $insta;
3
  $apif_settings = get_option( 'apif_settings' );
4
  $username = $apif_settings['username']; // your username
1
  <?php
2
+ defined( 'ABSPATH' ) or die( "No script kiddies please!" );
3
  global $apif_settings, $insta;
4
  $apif_settings = get_option( 'apif_settings' );
5
  $username = $apif_settings['username']; // your username
inc/frontend/instagram-widget.php CHANGED
@@ -1,4 +1,5 @@
1
  <?php
 
2
  global $apif_settings, $insta;
3
  $apif_settings = get_option( 'apif_settings' );
4
  $username = $apif_settings['username']; // your username
1
  <?php
2
+ defined( 'ABSPATH' ) or die( "No script kiddies please!" );
3
  global $apif_settings, $insta;
4
  $apif_settings = get_option( 'apif_settings' );
5
  $username = $apif_settings['username']; // your username
inc/frontend/instagram.php CHANGED
@@ -1,4 +1,5 @@
1
  <?php
 
2
  class InstaWCD{
3
  function userID(){
4
  $username = strtolower($this->username); // sanitization
1
  <?php
2
+ defined( 'ABSPATH' ) or die( "No script kiddies please!" );
3
  class InstaWCD{
4
  function userID(){
5
  $username = strtolower($this->username); // sanitization
readme.txt CHANGED
@@ -4,7 +4,7 @@ Tags: instagram, instagram feed, instagram tag, instagram slider, instagarm mosa
4
  Donate link: http://accesspressthemes.com/donation/
5
  Requires at least: 3.8
6
  Tested up to: 4.3
7
- Stable tag: 2.0.1
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -95,6 +95,9 @@ Once you install the plugin , you can check some general documentation about how
95
  5. Backend Display Settings Section
96
 
97
  == Changelog ==
 
 
 
98
  = 2.0.1 =
99
  * Removal of unnecessary css from the backend css.
100
 
4
  Donate link: http://accesspressthemes.com/donation/
5
  Requires at least: 3.8
6
  Tested up to: 4.3
7
+ Stable tag: 2.0.2
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
95
  5. Backend Display Settings Section
96
 
97
  == Changelog ==
98
+ = 2.0.2 =
99
+ * Done the prevention of the files for direct access for the frontend files.
100
+
101
  = 2.0.1 =
102
  * Removal of unnecessary css from the backend css.
103