vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 General Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=111)
-   -   $vbulletin-options[''] in array check not working (https://vborg.vbsupport.ru/showthread.php?t=107017)

Nullifi3d 02-02-2006 11:32 PM

$vbulletin-options[''] in array check not working
 
I'm having a small problem. I'm installing vbulletin settings for my banner system over at webhostdebate, but when trying to store the mime allowable types in a vbulletin setting it fails to validate an image as an image.

Code that works:
PHP Code:

if (in_array($_FILES['banner']['type'], array('image/gif''image/png''image/jpg''image/jpeg''image/bitmap'))) 

Code that fails:
PHP Code:

if (in_array($_FILES['banner']['type'], array($vbulletin->options['banner_types']))) { 

The settings banner types in vbulletin's settings is storing ['image/gif', 'image/png', 'image/jpg', 'image/jpeg', 'image/bitmap']. I'm not quite sure why this isn't working. I know the vbulletin->options variables are working properly in my script as there are many others referanced throughout. It's only in this array check that it fails. Anyone know why?

calorie 02-02-2006 11:47 PM

Store the types as a space delimited list in settings:
Code:

image/gif image/png image/jpg image/jpeg image/bitmap
Then use the following bit in your PHP banner code:
Code:

if (in_array($_FILES['banner']['type'], explode(" ", $vbulletin->options['banner_types'])))

Nullifi3d 02-03-2006 12:00 AM

thanks, that worked.


All times are GMT. The time now is 04:15 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.02811 seconds
  • Memory Usage 1,715KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (2)bbcode_code_printable
  • (2)bbcode_php_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (3)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete