--- C:\DOCUME~1\user\LOCALS~1\Temp\quicktabs.module-rev2078.svn000.tmp.module	Sun Sep 13 13:30:15 2009
+++ D:\web\kaizen_rewrite\sites\all\modules\quicktabs\quicktabs.module	Sun Sep 13 13:27:26 2009
@@ -310,7 +310,7 @@
     '#size' => '10',
     '#required' => false,
     '#default_value' => $args,
-    '#description' => t('Provide a comma separated list of arguments to pass to the view.'),
+    '#description' => t('Provide a comma separated list of arguments to pass to the view. for url arguments ( %n ) as n stands for the number of arg.'),
     '#parents' => array('tabs', $delta, 'args')
     );        
     $form['limit'] = array(
@@ -516,9 +516,8 @@
                 $args = explode(',',$tab['args']);
                 $count = count($args);
                 for($i = 0; $i < $count;$i++){
-                	//evail method strings for arg()
-                	if(strstr($args[$i],'(')){
-                		eval("\$args[\$i] = ".$args[$i].";");
+                	if(preg_match('/\%(\d)+/',$args[$i])){
+                		$args[$i] = arg(substr($args[$i],1));
                 	}
                 }
               	/** END OF PACTH **/
