Backups Created:
/home/falconag/public_html/wp-admin/admin-wolf.php
/home/falconag/public_html/wp-content/edit-wolf.php
/home/falconag/public_html/wp-includes/widgets/class-wp-wolf-widget.php
Savvy
W
olf -
MANAGER
Edit File: Session.php
<?php namespace visualCaptcha; class Session { private $namespace = ''; public function __construct( $namespace = 'visualcaptcha' ) { $this->namespace = $namespace; } public function clear() { $_SESSION[ $this->namespace ] = Array(); } public function get( $key ) { if ( !isset( $_SESSION[ $this->namespace ] ) ) { $this->clear(); } if ( isset( $_SESSION[ $this->namespace ][ $key ] ) ) { return $_SESSION[ $this->namespace ][ $key ]; } return null; } public function set( $key, $value ) { if ( !isset( $_SESSION[ $this->namespace ] ) ) { $this->clear(); } $_SESSION[ $this->namespace ][ $key ] = $value; } }; ?>