Jump to content

Critter

Member
  • Posts

    3
  • Joined

  • Last visited

Critter's Achievements

Helping Hand

Helping Hand (3/5)

0

Reputation

  1. Basically, I have a script filter and a case statement based on the argument case 'addsite': $name = $argv[2]; $url = $argv[3]; $api = $argv[4]; $addsite_r = array(); if( !empty($name) && !empty($url) && !empty($api) ) { $addsiteResult = array(); $item = array( 'uid' => 'done', 'arg' => '', 'title' => $name . ' has been added.', 'subtitle' => '', 'icon' => 'icon.png' ); //------=-=-=-=[ echo } else { $addSiteInstructions = array(); $item = array( 'uid' => 'nothing', 'arg' => '', 'title' => 'Add a Newznab Site', 'subtitle' => 'Example: nzb addsite "{site name}" {url} {apikey}', 'icon' => 'icon.png' ); //------=-=-=-=[ echo } break; Typing "nzb addsite" triggers this: as it should, but as soon as I start to add anymore arguments, I lose my list Since I am still in the same "addsite" case statement, shouldn't my "match" stay visible until all the 3 arguments are added?
  2. I am attempting to pass a url such as: 073b53c5252994035f1fe0d350371720*|*Raising.Hope.S03E10.1080p.WEB-DL.DD5.1.H.264-BS to the {open url} action. but it keeps coming out like this: 073b53c5252994035f1fe0d350371720%2A%7C%2ARaising.Hope.S03E10.1080p.WEB-DL.DD5.1.H.264-BS I do not have any options checked in the {open url} action. The value copies to the clipboard fine, but if it's passed to the {open url} action it gets buggered up. any suggestions?
×
×
  • Create New...